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

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