public function addSwitches(CliCommand $command, $injectables)
 {
     $command->addSwitches([new Feature_TestUsersSwitch(), new Feature_ReadOnlyTestUsersSwitch()]);
 }
Example #2
0
 public function addSwitches(CliCommand $command, $additionalContext)
 {
     $command->addSwitches([new Feature_ColorSwitch()]);
 }
 public function addSwitches(CliCommand $command, $injectables)
 {
     $command->addSwitches([new Feature_PersistProcessesSwitch()]);
 }
Example #4
0
 public function addSwitches(CliCommand $command, $injectables)
 {
     $command->addSwitches([new Feature_DeviceSwitch($injectables->knownDevicesList)]);
 }
 public function addSwitches(CliCommand $command, $injectables)
 {
     $command->addSwitches([new Feature_TestEnvironmentConfigSwitch($injectables->knownTestEnvironmentsList, $injectables->defaultTestEnvironmentName)]);
 }
 public function addSwitches(CliCommand $command, $injectables)
 {
     $command->addSwitches([new Feature_PersistTargetSwitch(), new Feature_ReuseTargetSwitch()]);
 }
 public function addSwitches(CliCommand $command, $injectables)
 {
     $command->addSwitches([new Feature_SystemUnderTestConfigSwitch($injectables->knownSystemsUnderTestList, $injectables->defaultSystemUnderTestName)]);
 }