Code Duplication    Length = 16-16 lines in 2 locations

codeception/acceptance/EA03ProductCest.php 2 locations

@@ 733-748 (lines=16) @@
730
        $I->seeInCurrentUrl('/products/detail/');
731
    }
732
733
    public function product_商品編集からの商品確認_公開(\AcceptanceTester $I)
734
    {
735
        $I->wantTo('EA0310-UC05-T02 編集からの商品確認 公開');
736
737
        ProductManagePage::go($I)
738
            ->検索('パーコレーター')
739
            ->検索結果_選択(1);
740
741
        ProductEditPage::at($I)
742
            ->入力_公開()
743
            ->登録()
744
            ->プレビュー();
745
746
        $I->switchToNewWindow();
747
        $I->seeInCurrentUrl('/products/detail/');
748
    }
749
750
    public function product_商品編集からの商品確認_非公開(\AcceptanceTester $I)
751
    {
@@ 750-765 (lines=16) @@
747
        $I->seeInCurrentUrl('/products/detail/');
748
    }
749
750
    public function product_商品編集からの商品確認_非公開(\AcceptanceTester $I)
751
    {
752
        $I->wantTo('EA0310-UC05-T03 編集からの商品確認 非公開');
753
754
        ProductManagePage::go($I)
755
            ->検索('パーコレーター')
756
            ->検索結果_選択(1);
757
758
        ProductEditPage::at($I)
759
            ->入力_非公開()
760
            ->登録()
761
            ->プレビュー();
762
763
        $I->switchToNewWindow();
764
        $I->seeInCurrentUrl('/products/detail/');
765
    }
766
767
}