Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | protected function assertForm(Response $response) |
||
29 | { |
||
30 | $this->assertEquals(200, $response->getStatusCode()); |
||
31 | $this->assertRegExp('/form/', $response->getContent()); |
||
32 | $this->assertNotRegExp('/<html/', $response->getContent()); |
||
33 | $this->assertNotRegExp('/_username/', $response->getContent()); |
||
34 | } |
||
35 | } |
||
36 |