| Total Complexity | 4 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 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 ::assertTxtFile |
||
| 38 | */ |
||
| 39 | public function testThrowExceptionWhenFileHasWrongType(): void |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @covers ::assertTxtFile |
||
| 48 | */ |
||
| 49 | public function testSuccessfullyAssertFileType(): void |
||
| 54 | } |
||
| 55 | } |
||
| 56 |