for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Cache\Tests\ArrayCache;
use Psr\SimpleCache\CacheInterface;
use Yiisoft\Cache\ArrayCache;
use Yiisoft\Cache\Cache;
class ArrayCacheDecoratorTest extends ArrayCacheTest
{
protected function createCacheInstance(): CacheInterface
return new Cache(new ArrayCache());
}
public function testGetInvalidKey(): void
// Cache decorator allows all types of keys
$this->assertTrue(true);
public function testSetInvalidKey(): void
public function testDeleteInvalidKey(): void
public function testGetMultipleInvalidKeys(): void
public function testGetMultipleInvalidKeysNotIterable(): void
public function testSetMultipleInvalidKeysNotIterable(): void
public function testDeleteMultipleInvalidKeys(): void
public function testDeleteMultipleInvalidKeysNotIterable(): void
public function testHasInvalidKey(): void