1 | <?php |
||
6 | class ProductFeatureContext extends FeatureContext |
||
7 | { |
||
8 | |||
9 | /** |
||
10 | * @Given is on our page |
||
11 | */ |
||
12 | public function isOnOurPage() |
||
15 | |||
16 | /** |
||
17 | * @When he is on :arg1 |
||
18 | */ |
||
19 | public function heIsOn($arg1) |
||
23 | |||
24 | /** |
||
25 | * @Then the page should return status :arg1 |
||
26 | */ |
||
27 | public function thePageShouldReturnStatus2($arg1) |
||
31 | |||
32 | /** |
||
33 | * @Then has title :arg1 and contain price :arg2 |
||
34 | */ |
||
35 | public function hasTitleAndContainPrice($arg1, $arg2) |
||
46 | } |
||
47 |