hasShippingCharge() public method

public hasShippingCharge ( string $shippingCharge ) : boolean
$shippingCharge string
return boolean
Ejemplo n.º 1
0
 /**
  * @Then there should be a shipping charge :shippingCharge
  */
 public function theOrdersShippingChargesShouldBe($shippingCharge)
 {
     Assert::true($this->showPage->hasShippingCharge($shippingCharge), sprintf('Shipping charges is not "%s".', $shippingCharge));
 }