Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function aboutReturnHome(AcceptanceTester $I): void |
||
22 | { |
||
23 | $I->amOnPage('/about'); |
||
24 | $I->wantTo('see about page.'); |
||
25 | $I->see('404'); |
||
26 | $I->see('The page /about not found.'); |
||
27 | $I->see('The above error occurred while the Web server was processing your request.'); |
||
28 | $I->see('Please contact us if you think this is a server error. Thank you.'); |
||
29 | $I->click('Go Back Home'); |
||
30 | $I->expectTo('see page home.'); |
||
31 | $I->see('Hello!'); |
||
32 | } |
||
34 |