| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 11 | class RadioGroupTest extends AbstractTest |
||
| 12 | { |
||
| 13 | public function testRenderEmptyElement() |
||
| 14 | { |
||
| 15 | $input = new \Nip_Form_Element_RadioGroup(new \Nip\Form\Form()); |
||
| 16 | $html = $input->render(); |
||
| 17 | |||
| 18 | self::assertSame('', $html); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testAutoSelectFirstDefaultDoesNotChangeValue() |
||
| 32 | } |
||
| 33 | } |
||
| 34 |