Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function testFindingFilesOnMultipleCriteria(int $finderAlgorithm) |
||
29 | { |
||
30 | $result = []; |
||
31 | include(__DIR__ . '/../../examples/02-find-on-multiple-criteria.php'); |
||
32 | |||
33 | $this->assertCount(2, $result); |
||
34 | $this->assertSame('found.txt', $result[0]['basename']); |
||
35 | $this->assertSame('example.txt', $result[1]['basename']); |
||
36 | } |
||
37 | |||
46 |