| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare( strict_types=1 ); |
||
| 15 | public function testSetGetInput () : void |
||
| 16 | { |
||
| 17 | $fileInput = new FileInput(); |
||
| 18 | |||
| 19 | $givenFileLocation = "/some/file/location"; |
||
| 20 | $expectedFileLocation = "/some/file/location"; |
||
| 21 | |||
| 22 | $fileInput->setInput( $givenFileLocation ); |
||
| 23 | |||
| 24 | $this->assertEquals( $expectedFileLocation, $fileInput->getInput() ); |
||
| 25 | } |
||
| 27 |