getPaymentMethods() 공개 메소드

public getPaymentMethods ( ) : string[]
리턴 string[]
예제 #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);
 }