1 | <?php |
||
3 | class OutputTest extends SwaggerGen_TestCase |
||
4 | { |
||
5 | |||
6 | /** |
||
7 | * @covers \SwaggerGen\Exception::__construct |
||
8 | * @dataProvider provideAllCases |
||
9 | */ |
||
10 | public function testAllCases($name, $files, $expected) |
||
16 | |||
17 | /** |
||
18 | * Normalizes and pretty-prints json (whitespace mostly) |
||
19 | * |
||
20 | * This is useful to get better diff results when assertions fail. |
||
21 | * |
||
22 | * @param string $json |
||
23 | * @return string |
||
24 | */ |
||
25 | private function normalizeJson($json) |
||
32 | |||
33 | public function provideAllCases() |
||
58 | |||
59 | } |
||
60 |