Sylius\Behat\Page\Admin\DashboardPageInterface::getTotalSales PHP 메소드

getTotalSales() 공개 메소드

public getTotalSales ( ) : integer
리턴 integer
    public function getTotalSales();

Usage Example

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