1 | <?php |
||
15 | trait TestUsersCommandTrait |
||
16 | { |
||
17 | /** |
||
18 | * @var \Codeception\Module\Drupal\UserRegistry\DrupalTestUser[] |
||
19 | * Store an array of test users to be created or deleted. |
||
20 | */ |
||
21 | protected $users; |
||
22 | |||
23 | /** |
||
24 | * @var \Codeception\Module\Drupal\UserRegistry\TestUserManagerInterface |
||
25 | * Store the test user manager being used to create or delete users. |
||
26 | */ |
||
27 | protected $testUserManager; |
||
28 | |||
29 | /** |
||
30 | * @param string $suiteName |
||
31 | * @param array $suiteSettings |
||
32 | * |
||
33 | * @throws ModuleException |
||
34 | * @throws \Codeception\Exception\Configuration |
||
35 | * @throws \Exception |
||
36 | */ |
||
37 | protected function getTestUsers($suiteName, $suiteSettings = null) |
||
56 | } |
||
57 |