1 | <?php |
||
14 | trait InterfaceContextTrait |
||
15 | { |
||
16 | /** |
||
17 | * @Given the interface :interfaceName does exist |
||
18 | * |
||
19 | * @param $interfaceName |
||
20 | */ |
||
21 | public function theInterfaceDoesExist($interfaceName) |
||
25 | |||
26 | /** |
||
27 | * @Given the interface :interfaceName does not exist |
||
28 | * |
||
29 | * @param $interfaceName |
||
30 | */ |
||
31 | public function theInterfaceDoesNotExist(string $interfaceName) |
||
35 | |||
36 | protected function assertInterfaceExists(string $interfaceName) |
||
46 | |||
47 | protected function assertInterfaceNotExists(string $interfaceName) |
||
57 | } |
||
58 | |||
59 |