Total Complexity | 3 |
Total Lines | 104 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class FixerTest extends \PHPUnit\Framework\TestCase |
||
8 | { |
||
9 | protected static $fixer; |
||
10 | |||
11 | public static function setUpBeforeClass() |
||
14 | } |
||
15 | |||
16 | /** @dataProvider theTests */ |
||
17 | public function test($json, $expect, $msg = null) |
||
18 | { |
||
19 | $this->assertSame($expect, static::$fixer->fix($json), $msg); |
||
20 | } |
||
21 | |||
22 | public function theTests() |
||
111 | ] |
||
112 | ]; |
||
115 |