Code Duplication    Length = 16-16 lines in 2 locations

codeception/acceptance/EA03ProductCest.php 1 location

@@ 488-503 (lines=16) @@
485
        $I->see('削除しました', ClassNameManagePage::$登録完了メッセージ);
486
    }
487
488
    public function product_規格表示順の変更(\AcceptanceTester $I)
489
    {
490
        $I->wantTo('EA0308-UC01-T01 規格表示順の変更');
491
492
        $ProductClassPage = ClassNameManagePage::go($I);
493
        $I->see('サイズ', $ProductClassPage->一覧_名称(3));
494
        $I->see('フレーバー', $ProductClassPage->一覧_名称(4));
495
496
        $ProductClassPage->一覧_下に(3);
497
        $I->see('フレーバー', $ProductClassPage->一覧_名称(3));
498
        $I->see('サイズ', $ProductClassPage->一覧_名称(4));
499
500
        $ProductClassPage->一覧_上に(4);
501
        $I->see('サイズ', $ProductClassPage->一覧_名称(3));
502
        $I->see('フレーバー', $ProductClassPage->一覧_名称(4));
503
    }
504
505
    public function product_分類表示順の変更(\AcceptanceTester $I)
506
    {

codeception/acceptance/EA07BasicinfoCest.php 1 location

@@ 198-213 (lines=16) @@
195
            ->一覧_削除(2);
196
    }
197
198
    public function basicinfo_配送方法一覧順序変更(\AcceptanceTester $I)
199
    {
200
        $I->wantTo('EA0706-UC02-T01 配送方法一覧順序変更');
201
202
        $DeliveryManagePage = DeliveryManagePage::go($I);
203
        $I->see('サンプル宅配 / サンプル宅配', $DeliveryManagePage->一覧_名称(2));
204
        $I->see('サンプル業者 / サンプル業者', $DeliveryManagePage->一覧_名称(3));
205
206
        $DeliveryManagePage->一覧_下に(2);
207
        $I->see('サンプル業者 / サンプル業者', $DeliveryManagePage->一覧_名称(2));
208
        $I->see('サンプル宅配 / サンプル宅配', $DeliveryManagePage->一覧_名称(3));
209
210
        $DeliveryManagePage->一覧_上に(3);
211
        $I->see('サンプル宅配 / サンプル宅配', $DeliveryManagePage->一覧_名称(2));
212
        $I->see('サンプル業者 / サンプル業者', $DeliveryManagePage->一覧_名称(3));
213
    }
214
215
    public function basicinfo_税率設定(\AcceptanceTester $I)
216
    {