getItemsTotal() public method

public getItemsTotal ( ) : string
return string
Ejemplo n.º 1
0
 /**
  * @Then the order's items total should be :itemsTotal
  */
 public function theOrdersItemsTotalShouldBe($itemsTotal)
 {
     $itemsTotalOnPage = $this->showPage->getItemsTotal();
     Assert::eq($itemsTotalOnPage, $itemsTotal, 'Items total is %s, but should be %s.');
 }