Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function testBasic($format) |
||
36 | { |
||
37 | $path = $this->getDocument('documentSimple', $format); |
||
38 | |||
39 | static::assertFileExists($path, 'File does not exist'); |
||
40 | static::assertGreaterThan(0, filesize($path), 'File is empty'); |
||
41 | static::assertEquals("\"Foo\",\"Bar\"".PHP_EOL."\"Hello\",\"World\"".PHP_EOL, file_get_contents($path), 'Unexpected content'); |
||
42 | } |
||
43 | |||
59 |