| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class RecursiveFileListingTest extends TestCase { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @expectedException Exception |
||
| 12 | */ |
||
| 13 | public function testInvalidDirectory() { |
||
| 15 | } |
||
| 16 | |||
| 17 | public function testFindFiles() { |
||
| 18 | $finder = new RecursiveFileListing(__DIR__ . "/RecFileListTestDir"); |
||
| 19 | $files = $finder->scan(); |
||
| 20 | |||
| 21 | $this->assertEquals(3, count($files)); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function testFilterFiles() { |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testFilterRemoval() { |
||
| 41 | } |