mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 02:18:13 -05:00
12 lines
164 B
Go
12 lines
164 B
Go
|
package cmd
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestExecCommand(t *testing.T) {
|
||
|
t.Log(execCommand("echo test"))
|
||
|
}
|
||
|
|
||
|
func Test_printFailed(t *testing.T) {
|
||
|
t.Log(Err("test"))
|
||
|
}
|