getPromotionTotal() 공개 메소드

public getPromotionTotal ( ) : string
리턴 string
예제 #1
0
 /**
  * @Then /^the order's promotion total should(?:| still) be "([^"]+)"$/
  */
 public function theOrdersPromotionTotalShouldBe($promotionTotal)
 {
     $promotionTotalOnPage = $this->showPage->getPromotionTotal();
     Assert::eq($promotionTotalOnPage, $promotionTotal, 'Promotion total is %s, but should be %s.');
 }