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