getBaseGrandTotal() public method

public getBaseGrandTotal ( ) : string
return string
コード例 #1
0
ファイル: CartContext.php プロジェクト: sylius/sylius
 /**
  * @Then the grand total value in base currency should be :total
  */
 public function myBaseCartTotalShouldBe($total)
 {
     $this->summaryPage->open();
     Assert::same($this->summaryPage->getBaseGrandTotal(), $total, 'Base grand total should be %2$s, but it is %s.');
 }