Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AssertProductDuplicateIsNotDisplayingOnFrontend.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\Constraint\AbstractConstraint;
10 
14 class AssertProductDuplicateIsNotDisplayingOnFrontend extends AbstractConstraint
15 {
16  /* tags */
17  const SEVERITY = 'high';
18  /* end tags */
19 
25  public function processAssert()
26  {
27  // TODO mage to MAGETWO-25523
28  }
29 
35  public function toString()
36  {
37  return 'The product does not appear on the frontend.';
38  }
39 }