Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function testLostPasswordForm() |
||
35 | { |
||
36 | |||
37 | $this->get("forgotten-password/"); |
||
38 | |||
39 | $this->submitForm( |
||
40 | "LostPasswordForm_lostPasswordForm", |
||
41 | "action_forgotPassword", |
||
42 | array("Email" => "[email protected]") |
||
43 | ); |
||
44 | |||
45 | $this->assertEquals( |
||
46 | false, |
||
47 | http_response_code(), |
||
48 | 'testLostPasswordForm() sends email' |
||
49 | ); |
||
61 |