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

getNumberOfNewCustomers() public method

    public function getNumberOfNewCustomers();

Usage Example

Example #1
0
 /**
  * @Then I should see :number new customers
  */
 public function iShouldSeeNewCustomers($number)
 {
     Assert::same($this->dashboardPage->getNumberOfNewCustomers(), $number);
 }