1 | <?php |
||
17 | class CestGenerator extends BaseTestGenerator |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * @var Filesystem |
||
22 | */ |
||
23 | protected $disk; |
||
24 | |||
25 | /** |
||
26 | * @var SetupInterface |
||
27 | */ |
||
28 | protected $setup; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $suite; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $name; |
||
39 | |||
40 | /** |
||
41 | * @var array |
||
42 | */ |
||
43 | protected $settings; |
||
44 | |||
45 | /** |
||
46 | * @var string |
||
47 | */ |
||
48 | protected $templatePath; |
||
49 | |||
50 | /** |
||
51 | * CestGenerator constructor. |
||
52 | * |
||
53 | * @param SetupInterface $setup |
||
54 | * @param string $suite |
||
55 | * @param string $name |
||
56 | * @param array $settings |
||
57 | * |
||
58 | * @throws \Exception |
||
59 | */ |
||
60 | public function __construct(SetupInterface $setup, string $suite, string $name, array $settings = []) |
||
64 | |||
65 | /** |
||
66 | * @return array |
||
67 | * @throws \Codeception\Exception\ConfigurationException |
||
68 | * @throws \Exception |
||
69 | */ |
||
70 | protected function getBaseSettings() : array |
||
92 | } |