| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function testFormConstructorCreatesAllItems() |
||
| 20 | { |
||
| 21 | $commentForm = new CommentForm($this->formStrings); |
||
| 22 | |||
| 23 | $this->assertTrue($commentForm->has('csrf')); |
||
| 24 | $this->assertTrue($commentForm->has('id')); |
||
| 25 | $this->assertTrue($commentForm->has('thread')); |
||
| 26 | $this->assertTrue($commentForm->has('uri')); |
||
| 27 | $this->assertTrue($commentForm->has('author')); |
||
| 28 | $this->assertTrue($commentForm->has('contact')); |
||
| 29 | $this->assertTrue($commentForm->has('content')); |
||
| 30 | $this->assertTrue($commentForm->has('submit')); |
||
| 31 | } |
||
| 32 | |||
| 41 |