| @@ 23-31 (lines=9) @@ | ||
| 20 | */ |
|
| 21 | class EF06OtherCest |
|
| 22 | { |
|
| 23 | public function other_ログイン正常(\AcceptanceTester $I) |
|
| 24 | { |
|
| 25 | $I->wantTo('EF0601-UC01-T01 ログイン 正常パターン'); |
|
| 26 | $I->logoutAsMember(); |
|
| 27 | ||
| 28 | $createCustomer = Fixtures::get('createCustomer'); |
|
| 29 | $customer = $createCustomer(); |
|
| 30 | $I->loginAsMember($customer->getEmail(), 'password'); |
|
| 31 | } |
|
| 32 | ||
| 33 | public function other_ログイン異常1(\AcceptanceTester $I) |
|
| 34 | { |
|
| @@ 112-122 (lines=11) @@ | ||
| 109 | $I->loginAsMember($customer->getEmail(), $password); |
|
| 110 | } |
|
| 111 | ||
| 112 | public function other_ログアウト(\AcceptanceTester $I) |
|
| 113 | { |
|
| 114 | $I->wantTo('EF0603-UC01-T01 ログアウト'); |
|
| 115 | $I->logoutAsMember(); |
|
| 116 | ||
| 117 | $createCustomer = Fixtures::get('createCustomer'); |
|
| 118 | $customer = $createCustomer(); |
|
| 119 | $I->loginAsMember($customer->getEmail(), 'password'); |
|
| 120 | ||
| 121 | $I->logoutAsMember(); |
|
| 122 | } |
|
| 123 | ||
| 124 | public function other_当サイトについて(\AcceptanceTester $I) |
|
| 125 | { |
|