MTimeProtectedFileStorageTest.php
Same filename in other branches
Namespace
Drupal\Tests\Component\PhpStorageFile
-
core/
tests/ Drupal/ Tests/ Component/ PhpStorage/ MTimeProtectedFileStorageTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Component\PhpStorage;
/**
* Tests the MTimeProtectedFileStorage implementation.
*
* @coversDefaultClass \Drupal\Component\PhpStorage\MTimeProtectedFileStorage
*
* @group Drupal
* @group PhpStorage
*/
class MTimeProtectedFileStorageTest extends MTimeProtectedFileStorageBase {
/**
* The expected test results for the security test.
*
* The default implementation protects against even the filemtime change so
* both iterations will return FALSE.
*/
protected array $expected = [
FALSE,
FALSE,
];
/**
* The PHP storage class to test.
*/
protected $storageClass = 'Drupal\\Component\\PhpStorage\\MTimeProtectedFileStorage';
}
Classes
Title | Deprecated | Summary |
---|---|---|
MTimeProtectedFileStorageTest | Tests the MTimeProtectedFileStorage implementation. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.