Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function testFilter(array $intents, array $attributes, ?string $tag) |
||
29 | { |
||
30 | $sut = new FileDownload($intents, $attributes, $tag); |
||
31 | |||
32 | $html = (string)$sut; |
||
33 | |||
34 | $this->assertStringContainsString('<div class="hidable">', $html); |
||
35 | $this->assertStringContainsString('<form class="filter-form"></form>', $html); |
||
36 | } |
||
38 |