Sylius\Behat\Page\Shop\Checkout\SelectPaymentPageInterface::getPaymentMethods PHP 메소드

getPaymentMethods() 공개 메소드

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

Usage Example

예제 #1
0
 /**
  * @Then I should have :paymentMethodName payment method available as the last choice
  */
 public function iShouldHavePaymentMethodAvailableAsLastChoice($paymentMethodName)
 {
     $paymentMethods = $this->selectPaymentPage->getPaymentMethods();
     $lastPaymentMethod = end($paymentMethods);
     Assert::same($paymentMethodName, $lastPaymentMethod);
 }