(self, config, parameter_values=None)
| 677 | return output |
| 678 | |
| 679 | def create_and_start_executor(self, config, parameter_values=None): |
| 680 | if parameter_values is None: |
| 681 | parameter_values = {} |
| 682 | |
| 683 | config.set_all_param_values(parameter_values) |
| 684 | |
| 685 | self.executor = ScriptExecutor(config, test_utils.env_variables) |
| 686 | self.executor.start(123) |
| 687 | return self.executor |
| 688 | |
| 689 | |
| 690 | class GetSecureCommandTest(unittest.TestCase): |
no test coverage detected