Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function testShouldRenderBaseTemplateWithPlaceholders(): void |
||
18 | { |
||
19 | $output = $this->renderTemplate('base.twig'); |
||
20 | |||
21 | $this->assertContains('<title>base_title</title>', $output); |
||
22 | $this->assertContains('<h1>base_title</h1>', $output); |
||
23 | $this->assertContains('<p>base_footer</p>', $output); |
||
24 | } |
||
36 |