| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class FileAssertTest extends DictionaryTestCase |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @covers ::assertFile |
||
| 18 | */ |
||
| 19 | public function testSuccessfullyAssertFile(): void |
||
| 20 | { |
||
| 21 | FileAssert::assertFile(tempnam(sys_get_temp_dir(), 'test_')); |
||
| 22 | |||
| 23 | self::assertTrue(true); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @covers ::assertFile |
||
| 28 | */ |
||
| 29 | public function testThrowExceptionWhenFileIsNotFound(): void |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @covers ::assertCsvFile |
||
| 38 | */ |
||
| 39 | public function testSuccessfullyAssertFileType(): void |
||
| 46 |