Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testGetField() |
||
12 | { |
||
13 | $formAction = new FormAction('test'); |
||
14 | $this->assertContains('type="submit"', $formAction->getAttributesHTML()); |
||
15 | |||
16 | $formAction->setAttribute('src', 'file.png'); |
||
17 | $this->assertContains('type="image"', $formAction->getAttributesHTML()); |
||
18 | } |
||
33 |