|
@@ 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 |
|
{ |
|
@@ 105-115 (lines=11) @@
|
| 102 |
|
$I->loginAsMember($customer->getEmail(), trim(str_replace('新しいパスワード:', '', $new_password))); |
| 103 |
|
} |
| 104 |
|
|
| 105 |
|
public function other_ログアウト(\AcceptanceTester $I) |
| 106 |
|
{ |
| 107 |
|
$I->wantTo('EF0603-UC01-T01 ログアウト'); |
| 108 |
|
$I->logoutAsMember(); |
| 109 |
|
|
| 110 |
|
$createCustomer = Fixtures::get('createCustomer'); |
| 111 |
|
$customer = $createCustomer(); |
| 112 |
|
$I->loginAsMember($customer->getEmail(), 'password'); |
| 113 |
|
|
| 114 |
|
$I->logoutAsMember(); |
| 115 |
|
} |
| 116 |
|
|
| 117 |
|
public function other_当サイトについて(\AcceptanceTester $I) |
| 118 |
|
{ |