| 1 | <?php |
||
| 14 | class SimpleFormatterTest extends TestCase |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var SimpleFormatter |
||
| 18 | */ |
||
| 19 | protected $formatter; |
||
| 20 | |||
| 21 | public function setUp() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @dataProvider quantitiesProvider |
||
| 28 | * |
||
| 29 | * @param Quantity $quantity |
||
| 30 | * @param string $expected |
||
| 31 | */ |
||
| 32 | public function testFormats(Quantity $quantity, string $expected): void |
||
| 36 | |||
| 37 | public function quantitiesProvider(): array |
||
| 47 | } |
||
| 48 |