Sylius\Behat\Page\Shop\Checkout\SelectShippingPageInterface::getShippingMethods PHP 메소드

getShippingMethods() 공개 메소드

public getShippingMethods ( ) : string[]
리턴 string[]
    public function getShippingMethods();

Usage Example

예제 #1
0
 /**
  * @Then I should have :shippingMethodName shipping method available as the last choice
  */
 public function iShouldHaveShippingMethodAvailableAsLastChoice($shippingMethodName)
 {
     $shippingMethods = $this->selectShippingPage->getShippingMethods();
     $lastShippingMethod = end($shippingMethods);
     Assert::same($shippingMethodName, $lastShippingMethod);
 }