Files
gormt/data/config/test_def.go
xiexiaojun 03a29cc432 add cobra
add cobra
2019-05-05 21:13:15 +08:00

20 lines
229 B
Go

package config
import (
"os"
"strings"
)
const (
test_file = `
`
)
//判断是否在测试环境下使用
func IsRunTesting() bool {
if len(os.Args) > 1 {
return strings.HasPrefix(os.Args[1], "-test")
}
return false
}