getPaymentAmount() 공개 메소드

public getPaymentAmount ( ) : string
리턴 string
예제 #1
0
 /**
  * @Then the order's payment should (also) be :paymentAmount
  */
 public function theOrdersPaymentShouldBe($paymentAmount)
 {
     $actualPaymentAmount = $this->showPage->getPaymentAmount();
     Assert::eq($paymentAmount, $actualPaymentAmount);
 }