getTotal() public method

public getTotal ( ) : string
return 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.');
 }