getTotal() 공개 메소드

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