Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
13 | public function testRendering() { |
||
14 | $element = new CheckboxList(); |
||
15 | $element->setName('lang'); |
||
16 | $element->setOptions(['ru', 'ua']); |
||
17 | |||
18 | $element->render(); |
||
19 | $this->assertContains( |
||
20 | '<label><input name="lang[]" type="checkbox" value="0" />ru</label><label><input name="lang[]" type="checkbox" value="1" />ua</label>', |
||
21 | $element->render() |
||
22 | ); |
||
23 | } |
||
24 | |||
37 | } |