14 lines
216 B
Go
14 lines
216 B
Go
package executor
|
|
|
|
import "testing"
|
|
|
|
func TestReadTimeOutput(t *testing.T) {
|
|
strings := []string{
|
|
"/bin/bash",
|
|
"/root/IdeaProjects/ProjectOctopus/agent-go/tmp/simple.sh",
|
|
}
|
|
|
|
ReadTimeCommandExecutor(strings)
|
|
|
|
}
|