| Total Complexity | 8 |
| Total Lines | 69 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class CacheTest extends TestCase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Cache |
||
| 16 | */ |
||
| 17 | protected $object; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Sets up the fixture, for example, opens a network connection. |
||
| 21 | * This method is called before a test is executed. |
||
| 22 | */ |
||
| 23 | protected function setUp(): void |
||
| 24 | { |
||
| 25 | $this->object = new Cache(); |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Tears down the fixture, for example, closes a network connection. |
||
| 30 | * This method is called after a test is executed. |
||
| 31 | */ |
||
| 32 | protected function tearDown(): void |
||
| 33 | { |
||
| 34 | } |
||
| 35 | |||
| 36 | public function testInit() |
||
| 41 | ); |
||
| 42 | } |
||
| 43 | |||
| 44 | public function testWrite() |
||
| 45 | { |
||
| 46 | // Remove the following lines when you implement this test. |
||
| 47 | $this->markTestIncomplete( |
||
| 48 | 'This test has not been implemented yet.' |
||
| 49 | ); |
||
| 50 | } |
||
| 51 | |||
| 52 | public function testRead() |
||
| 57 | ); |
||
| 58 | } |
||
| 59 | |||
| 60 | public function testDelete() |
||
| 61 | { |
||
| 62 | // Remove the following lines when you implement this test. |
||
| 63 | $this->markTestIncomplete( |
||
| 64 | 'This test has not been implemented yet.' |
||
| 65 | ); |
||
| 66 | } |
||
| 67 | |||
| 68 | public function testCacheRead() |
||
| 73 | ); |
||
| 74 | } |
||
| 75 | |||
| 76 | public function testClear() |
||
| 81 | ); |
||
| 82 | } |
||
| 84 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths