| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function testBasic($format) |
||
| 37 | { |
||
| 38 | // Skip PDF test for nightly builds of PHP since mPDF doesn't work |
||
| 39 | if (version_compare(phpversion(), '7.0.0-dev', '>=')) { |
||
| 40 | return; |
||
| 41 | } |
||
| 42 | |||
| 43 | $path = $this->getDocument('cellProperties', $format); |
||
| 44 | |||
| 45 | static::assertFileExists($path, 'File does not exist'); |
||
| 46 | static::assertGreaterThan(0, filesize($path), 'File is empty'); |
||
| 47 | } |
||
| 48 | } |
||
| 49 |