Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class AssetRendererTest extends AbstractTest |
||
13 | { |
||
14 | public function test_for_styleLink() |
||
15 | { |
||
16 | $asset = new Asset('test.css', Asset::TYPE_STYLES); |
||
17 | /** @noinspection HtmlUnknownTarget */ |
||
18 | self::assertSame( |
||
19 | '<link href="test.css" type="text/css" rel="stylesheet" />', |
||
20 | Asset\AssetRenderer::for($asset) |
||
21 | ); |
||
22 | } |
||
23 | |||
24 | public function test_for_styleWithContent() |
||
31 | ); |
||
32 | } |
||
33 | |||
34 | public function test_for_script() |
||
44 |