| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class InputTest extends TestCase |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Tests input tag constructor |
||
| 21 | * |
||
| 22 | * @return null |
||
| 23 | */ |
||
| 24 | public function testInputTags() |
||
| 25 | { |
||
| 26 | $input = new Input(); |
||
| 27 | |||
| 28 | $this->assertEquals('<input', $input->getStartTag()); |
||
| 29 | $this->assertEquals('/>', $input->getEndTag()); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Tests adding attributes and children |
||
| 34 | * |
||
| 35 | * @return null |
||
| 36 | */ |
||
| 37 | public function testInputAttributesAndChildren() |
||
| 50 | } |
||
| 51 | } |