| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testAllCases($name, $files, $expected) |
||
| 11 | { |
||
| 12 | $SwaggerGen = new \SwaggerGen\SwaggerGen('example.com', '/base'); |
||
| 13 | $actual = $SwaggerGen->getSwagger($files, array(), \SwaggerGen\SwaggerGen::FORMAT_JSON); |
||
| 14 | $this->assertJsonStringEqualsJsonString($expected, $this->normalizeJson($actual), $name); |
||
| 15 | } |
||
| 16 | |||
| 60 |