Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function testConvert(array $knownProperties, $targetProperty, $skipEmptyKey, $inputData, array $expectedResult) |
||
13 | { |
||
14 | $converter = new UnknownPropertiesItemConverter($knownProperties, $targetProperty, $skipEmptyKey); |
||
15 | |||
16 | $this->assertEquals($expectedResult, $converter->convert($inputData)); |
||
17 | } |
||
18 | |||
47 |