| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function testLostPasswordForm() |
||
| 30 | { |
||
| 31 | |||
| 32 | $this->get("forgotten-password/"); |
||
| 33 | |||
| 34 | $this->submitForm("LostPasswordForm_lostPasswordForm", "action_forgotPassword", array("Email" => "[email protected]")); |
||
| 35 | |||
| 36 | $this->assertEquals( |
||
| 37 | false, |
||
| 38 | http_response_code(), |
||
| 39 | 'testLostPasswordForm() sends email' |
||
| 40 | ); |
||
| 43 |