Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AssertTierPriceOnGroupedProductPage.php
Go to the documentation of this file.
1 <?php
8 
10 use Magento\Catalog\Test\Page\Product\CatalogProductView;
12 use Magento\Mtf\Client\BrowserInterface;
13 
19 {
25  protected $errorMessage = 'For "%s" Product tier price on product page is not correct.';
26 
32  protected $successfulMessage = 'Tier price is displayed on the grouped product page.';
33 
43  public function processAssert(
44  CatalogProductView $catalogProductView,
45  GroupedProduct $product,
47  BrowserInterface $browser
48  ) {
49  $this->processAssertPrice($product, $catalogProductView, $tierPrice, $browser, 'Tier');
50  }
51 }
processAssert(CatalogProductView $catalogProductView, GroupedProduct $product, AssertProductTierPriceOnProductPage $tierPrice, BrowserInterface $browser)