| 1 | <?php |
||
| 22 | final class BooleanToStringTransformerTest extends TestCase |
||
| 23 | { |
||
| 24 | public function provideTransform(): array |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @dataProvider provideTransform |
||
| 38 | */ |
||
| 39 | public function testTransform($value, ?string $expected, string $trueValue): void |
||
| 45 | |||
| 46 | public function provideReverseTransform(): array |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @dataProvider provideReverseTransform |
||
| 72 | */ |
||
| 73 | public function testReverseTransform($value, bool $expected): void |
||
| 79 | } |
||
| 80 |