Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 2 | Features | 0 |
1 | <?php |
||
10 | class OutlinerTest extends TestCase |
||
11 | { |
||
12 | /** @test */ |
||
13 | public function outline_renders_correctly() |
||
14 | { |
||
15 | $parser = new FileParser(__DIR__.'/data/outline.php'); |
||
16 | |||
17 | $renderer = new Renderer($parser->getParsed()); |
||
18 | |||
19 | $this->assertContains(file_get_contents(__DIR__.'/data/output.html'), $renderer->getRendered()); |
||
20 | } |
||
21 | |||
22 | /** @test */ |
||
23 | public function outline_renders_multiple_correctly() |
||
30 | } |
||
31 | } |
||
32 |