NewLocalExecutor creates a new local executor
()
| 17 | |
| 18 | // NewLocalExecutor creates a new local executor |
| 19 | func NewLocalExecutor() Executor { |
| 20 | return LocalExecutor{} |
| 21 | } |
| 22 | |
| 23 | // Execute will execute the given test on the current node |
| 24 | func (e LocalExecutor) Execute(test TestCase) TestResult { |