hasShippingMethodFee() public method

public hasShippingMethodFee ( string $shippingMethodName, string $fee ) : boolean
$shippingMethodName string
$fee string
return boolean
Esempio n. 1
0
 /**
  * @Given I should see shipping method :shippingMethodName with fee :fee
  */
 public function iShouldSeeShippingFee($shippingMethodName, $fee)
 {
     Assert::true($this->selectShippingPage->hasShippingMethodFee($shippingMethodName, $fee), sprintf('The shipping fee should be %s, but it does not.', $fee));
 }