hasTaxTotal() public method

public hasTaxTotal ( string $taxTotal ) : boolean
$taxTotal string
return boolean
コード例 #1
0
ファイル: CheckoutContext.php プロジェクト: starspire/Sylius
 /**
  * @Given my tax total should be :taxTotal
  */
 public function myTaxTotalShouldBe($taxTotal)
 {
     Assert::true($this->completePage->hasTaxTotal($taxTotal), sprintf('The tax total should be %s, but it does not.', $taxTotal));
 }