Total Complexity | 10 |
Total Lines | 59 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ArrayCacheDecoratorTest extends ArrayCacheTest |
||
10 | { |
||
11 | protected function createCacheInstance(): CacheInterface |
||
14 | } |
||
15 | |||
16 | public function testGetInvalidKey(): void |
||
17 | { |
||
18 | // Cache decorator allows all types of keys |
||
19 | $this->assertTrue(true); |
||
20 | } |
||
21 | |||
22 | public function testSetInvalidKey(): void |
||
23 | { |
||
24 | // Cache decorator allows all types of keys |
||
25 | $this->assertTrue(true); |
||
26 | } |
||
27 | |||
28 | public function testDeleteInvalidKey(): void |
||
29 | { |
||
30 | // Cache decorator allows all types of keys |
||
31 | $this->assertTrue(true); |
||
32 | } |
||
33 | |||
34 | public function testGetMultipleInvalidKeys(): void |
||
35 | { |
||
36 | // Cache decorator allows all types of keys |
||
37 | $this->assertTrue(true); |
||
38 | } |
||
39 | |||
40 | public function testGetMultipleInvalidKeysNotIterable(): void |
||
41 | { |
||
42 | // Cache decorator allows all types of keys |
||
43 | $this->assertTrue(true); |
||
44 | } |
||
45 | |||
46 | public function testSetMultipleInvalidKeysNotIterable(): void |
||
50 | } |
||
51 | |||
52 | public function testDeleteMultipleInvalidKeys(): void |
||
56 | } |
||
57 | |||
58 | public function testDeleteMultipleInvalidKeysNotIterable(): void |
||
62 | } |
||
63 | |||
64 | public function testHasInvalidKey(): void |
||
65 | { |
||
70 |