| 1 | <?php |
||
| 17 | abstract class AbstractConverterTest extends PHPUnit_Framework_TestCase |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @dataProvider dataProvider |
||
| 21 | * @param ConverterInterface $converter |
||
| 22 | * @param ConvertibleValue $from |
||
| 23 | * @param Unit $to |
||
| 24 | * @param string $expectedValue |
||
| 25 | * @param string $expectedUnitName |
||
| 26 | * @param string $expectedUnitAbbreviation |
||
| 27 | */ |
||
| 28 | public function testConversion(ConverterInterface $converter, ConvertibleValue $from, Unit $to, string $expectedValue, string $expectedUnitName, string $expectedUnitAbbreviation) |
||
| 36 | |||
| 37 | } |
||
| 38 |