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 }