hasShippingTotal() 공개 메소드

public hasShippingTotal ( string $price ) : boolean
$price string
리턴 boolean
예제 #1
0
 /**
  * @Then my order shipping should be :price
  */
 public function myOrderShippingShouldBe($price)
 {
     Assert::true($this->completePage->hasShippingTotal($price), sprintf('The shipping total should be %s, but it is not.', $price));
 }