Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class HtmlConditionalFormattingTest extends TestCase |
||
13 | { |
||
14 | private string $outfile = ''; |
||
15 | |||
16 | protected function tearDown(): void |
||
17 | { |
||
18 | if ($this->outfile !== '') { |
||
19 | unlink($this->outfile); |
||
20 | $this->outfile = ''; |
||
21 | } |
||
22 | } |
||
23 | |||
24 | public function testConditionalFormattingHtmlOutput(): void |
||
40 | } |
||
41 | } |
||
42 |