getCartTotal() public method

public getCartTotal ( ) : string
return string
示例#1
0
 /**
  * @Then my cart's total should be :total
  */
 public function myCartSTotalShouldBe($total)
 {
     Assert::same($total, $this->summaryPage->getCartTotal(), 'Cart should have %s total, but it has %2$s.');
 }