commander-cli/commander

View on GitHub
pkg/runtime/executor.go

Summary

Maintainability
A
0 mins
Test Coverage
package runtime

// Executor interface which will be implemented by all available executors, like ssh or local
type Executor interface {
    Execute(test TestCase) TestResult
}