| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 20 | 
| Code Lines | 16 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 23 | protected function setUp() : void  | 
            ||
| 24 |     { | 
            ||
| 25 | parent::setUp();  | 
            ||
| 26 | |||
| 27 | // @todo: Let's make these tests pass  | 
            ||
| 28 | $this->skippedTests['testSetMultipleWithGenerator'] = true;  | 
            ||
| 29 | $this->skippedTests['testGetMultipleWithGenerator'] = true;  | 
            ||
| 30 | $this->skippedTests['testGetInvalidKeys'] = true;  | 
            ||
| 31 | $this->skippedTests['testGetMultipleInvalidKeys'] = true;  | 
            ||
| 32 | $this->skippedTests['testGetMultipleNoIterable'] = true;  | 
            ||
| 33 | $this->skippedTests['testSetInvalidKeys'] = true;  | 
            ||
| 34 | $this->skippedTests['testSetMultipleInvalidKeys'] = true;  | 
            ||
| 35 | $this->skippedTests['testSetMultipleNoIterable'] = true;  | 
            ||
| 36 | $this->skippedTests['testHasInvalidKeys'] = true;  | 
            ||
| 37 | $this->skippedTests['testDeleteInvalidKeys'] = true;  | 
            ||
| 38 | $this->skippedTests['testDeleteMultipleInvalidKeys'] = true;  | 
            ||
| 39 | $this->skippedTests['testDeleteMultipleNoIterable'] = true;  | 
            ||
| 40 | $this->skippedTests['testObjectDoesNotChangeInCache'] = true;  | 
            ||
| 41 | $this->skippedTests['testDataTypeBoolean'] = true;  | 
            ||
| 42 | }  | 
            ||
| 43 | }  | 
            ||
| 44 |