Files
gormt/data/config/test_def.go
谢小军 ee2e02092a Restructure
重构
2019-09-30 18:25:22 +08:00

20 lines
292 B
Go

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