1 | <?php |
||
11 | class BlackholeCacheItemPoolDecoratorTest extends TestCase |
||
12 | { |
||
13 | /** |
||
14 | * Asserts that blackhole pool will always report a cache miss. |
||
15 | */ |
||
16 | public function testIsHit() |
||
25 | |||
26 | /** |
||
27 | * Asserts that item returned by the blackhole pool is the correct type. |
||
28 | */ |
||
29 | public function testGetItem() |
||
36 | |||
37 | /** |
||
38 | * Asserts that items returned by the blackhole pool are the correct type. |
||
39 | */ |
||
40 | public function testGetItems() |
||
49 | |||
50 | /** |
||
51 | * Asserts that decorated item returned by the blackhole pool is of the correct type. |
||
52 | */ |
||
53 | public function testGetDecoratedItem() |
||
62 | |||
63 | /** |
||
64 | * Returns an implementation of the CacheItemPoolInterface |
||
65 | * initialized with the values provided in the array. |
||
66 | * |
||
67 | * @param array $values |
||
68 | * |
||
69 | * @return CacheItemPoolInterface |
||
70 | */ |
||
71 | private function getCachePool(array $values) |
||
82 | } |
||
83 |