Sylius\Behat\Page\Admin\DashboardPageInterface::getTotalSales PHP Method

getTotalSales() public method

public getTotalSales ( ) : integer
return integer
    public function getTotalSales();

Usage Example

Example #1
0
 /**
  * @Then there should be total sales of :total
  */
 public function thereShouldBeTotalSalesOf($total)
 {
     Assert::same($this->dashboardPage->getTotalSales(), $total);
 }