1 | <?php |
||
21 | final class HomepageContext implements Context |
||
22 | { |
||
23 | /** |
||
24 | * @var HomePageInterface |
||
25 | */ |
||
26 | private $homePage; |
||
27 | |||
28 | /** |
||
29 | * @param HomePageInterface $homepage |
||
30 | */ |
||
31 | public function __construct(HomePageInterface $homepage) |
||
35 | |||
36 | /** |
||
37 | * @When I check latest products |
||
38 | */ |
||
39 | public function iCheckLatestProducts() |
||
43 | |||
44 | /** |
||
45 | * @Then I should see :numberOfProducts products in the list |
||
46 | */ |
||
47 | public function iShouldSeeProductsInTheList($numberOfProducts) |
||
57 | } |
||
58 |