Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function testRenderIcon() { |
||
31 | |||
32 | $obj = new TestIconRendererTrait(); |
||
33 | $obj->setTwigEnvironment($this->twigEnvironment); |
||
34 | |||
35 | $this->assertEquals("", $obj->renderIcon(null)); |
||
36 | $this->assertEquals("", $obj->renderIcon("")); |
||
37 | $this->assertEquals('<i class="fa fa-home"></i>', $obj->renderIcon("fa:home")); |
||
38 | } |
||
40 |