X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FCache%2FArrayCacheTest.php;h=e1f491d3bd01f74842d8818e93b9bb1509397a8b;hb=bc60eb6cb7878745fe76d7998d87d1d611fa47b5;hp=60ca2761e55700e9582695ea30f8f8328713f23e;hpb=f1e7d97b8cae93e1c77f5a5085880409b01fcdbe;p=friendica.git diff --git a/tests/src/Core/Cache/ArrayCacheTest.php b/tests/src/Core/Cache/ArrayCacheTest.php index 60ca2761e5..e1f491d3bd 100644 --- a/tests/src/Core/Cache/ArrayCacheTest.php +++ b/tests/src/Core/Cache/ArrayCacheTest.php @@ -1,8 +1,27 @@ . + * + */ namespace Friendica\Test\src\Core\Cache; -use Friendica\Core\Cache\ArrayCache; +use Friendica\Core\Cache\Type\ArrayCache; class ArrayCacheTest extends MemoryCacheTest { @@ -12,15 +31,19 @@ class ArrayCacheTest extends MemoryCacheTest return $this->cache; } - public function tearDown() + protected function tearDown(): void { $this->cache->clear(false); parent::tearDown(); } + /** + * @doesNotPerformAssertions + */ public function testTTL() { // Array Cache doesn't support TTL + self::markTestSkipped("Array Cache doesn't support TTL"); return true; } }