Code Duplication    Length = 11-11 lines in 2 locations

codeception/acceptance/EA03ProductCest.php 2 locations

@@ 75-85 (lines=11) @@
72
        $I->see('検索条件に誤りがあります。', ProductManagePage::$検索結果_エラーメッセージ);
73
    }
74
75
    public function product_規格確認のポップアップ表示(\AcceptanceTester $I)
76
    {
77
        $I->wantTo('EA0301-UC01-T03 規格確認のポップアップを表示');
78
79
        ProductManagePage::go($I)
80
            ->検索(1)
81
            ->規格確認ボタンをクリック(1)
82
            ->規格確認をキャンセル();
83
84
        $I->dontSeeElement(['css' => 'div.modal.show']);
85
    }
86
87
    public function product_ポップアップから規格編集画面に遷移(\AcceptanceTester $I)
88
    {
@@ 87-97 (lines=11) @@
84
        $I->dontSeeElement(['css' => 'div.modal.show']);
85
    }
86
87
    public function product_ポップアップから規格編集画面に遷移(\AcceptanceTester $I)
88
    {
89
        $I->wantTo('EA0301-UC01-T04 ポップアップから規格編集画面に遷移');
90
91
        ProductManagePage::go($I)
92
            ->検索(1)
93
            ->規格確認ボタンをクリック(1)
94
            ->規格編集画面に遷移();
95
96
        $I->see('商品登録(規格設定)商品管理', self::ページタイトルStyleGuide);
97
    }
98
99
    public function product_商品検索結果無(\AcceptanceTester $I)
100
    {