Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare( strict_types = 1 ); |
||
6 | use PHPUnit\Framework\TestCase; |
||
7 | |||
8 | class FileInputTests extends TestCase |
||
9 | { |
||
10 | public function testSetGetInput () : void |
||
11 | { |
||
12 | $fileInput = new FileInput(); |
||
13 | |||
14 | $givenFileLocation = "/some/file/location"; |
||
15 | $expectedFileLocation = "/some/file/location"; |
||
16 | |||
17 | $fileInput->setInput( $givenFileLocation ); |
||
18 | |||
22 |