| 1 | <?php |
||
| 20 | class DashboardContext implements Context |
||
| 21 | { |
||
| 22 | /** @var DashboardPage */ |
||
| 23 | private $dashboardPage; |
||
| 24 | |||
| 25 | public function __construct(DashboardPage $dashboardPage) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @When I open administration dashboard |
||
| 32 | */ |
||
| 33 | public function iOpenAdministrationDashboard() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @Then I should see :number new customers in the list |
||
| 40 | */ |
||
| 41 | public function iShouldSeeNewCustomersInTheList($number) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @Then I should see :number new customers |
||
| 48 | */ |
||
| 49 | public function iShouldSeeNewCustomers($number) |
||
| 53 | } |
||
| 54 |