1 | <?php |
||
13 | class GenerateInterfaceContext implements Context |
||
14 | { |
||
15 | use InterfaceContextTrait, |
||
16 | ApplicationTestTrait; |
||
17 | |||
18 | /** |
||
19 | * Initializes context. |
||
20 | */ |
||
21 | public function __construct() |
||
24 | |||
25 | /** |
||
26 | * @beforeScenario |
||
27 | */ |
||
28 | public function setup() |
||
32 | |||
33 | /** |
||
34 | * @Given I have started implementing the :interface interface |
||
35 | * @Given I start implementing the :interface interface |
||
36 | */ |
||
37 | public function iImplementTheInterface($interface) |
||
47 | } |
||
48 | |||
49 |