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