| 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 ); |
||
| 8 | public function testSetGetInput () : void |
||
| 9 | { |
||
| 10 | $fileInput = new FileInput(); |
||
| 11 | |||
| 12 | $givenFileLocation = "/some/file/location"; |
||
| 13 | $expectedFileLocation = "/some/file/location"; |
||
| 14 | |||
| 15 | $fileInput->setInput( $givenFileLocation ); |
||
| 16 | |||
| 17 | $this->assertEquals( $expectedFileLocation, $fileInput->getInput() ); |
||
| 18 | } |
||
| 20 |