| 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 ); |
||
| 11 | public function testSetterGetterAttributeInput () : void |
||
| 12 | { |
||
| 13 | $jsonExtractor = new JsonExtractor(); |
||
| 14 | |||
| 15 | $givenInput = "/some/file/path/file.json"; |
||
| 16 | $expectedInput = "/some/file/path/file.json"; |
||
| 17 | |||
| 18 | $jsonExtractor->setInput( $givenInput ); |
||
| 19 | |||
| 20 | $this->assertEquals( $expectedInput, $jsonExtractor->getInput() ); |
||
| 21 | } |
||
| 35 |