cmd_test.go 118 Bytes
Newer Older
liming6's avatar
liming6 committed
1
2
3
4
5
6
7
8
package utils

import "testing"

func TestDetectCmd(t *testing.T) {
	a, b := DetectCmd("ps")
	t.Logf("%v,%v", a, b)
}