getItemTax() public method

public getItemTax ( string $itemName ) : string
$itemName string
return string
Ejemplo n.º 1
0
 /**
  * @Then /^(its) tax should be ([^"]+)$/
  */
 public function itemTaxShouldBe($itemName, $tax)
 {
     $itemTaxOnPage = $this->showPage->getItemTax($itemName);
     Assert::eq($itemTaxOnPage, $tax, 'Item tax is %s, but should be %s.');
 }