hasShippingMethod() публичный Метод

public hasShippingMethod ( Sylius\Component\Core\Model\ShippingMethodInterface $shippingMethod ) : boolean
$shippingMethod Sylius\Component\Core\Model\ShippingMethodInterface
Результат boolean
Пример #1
0
 /**
  * @Then my order's shipping method should be :shippingMethod
  */
 public function myOrderSShippingMethodShouldBe(ShippingMethodInterface $shippingMethod)
 {
     Assert::true($this->completePage->hasShippingMethod($shippingMethod), sprintf('I should see %s shipping method, but I do not.', $shippingMethod->getName()));
 }