(m *testing.M)
| 60 | } |
| 61 | |
| 62 | func TestMain(m *testing.M) { |
| 63 | initialize() |
| 64 | os.Exit(m.Run()) |
| 65 | } |
| 66 | |
| 67 | func initialize() { |
| 68 | if os.Getenv(envTestProjectId) == "" || os.Getenv(envTestInstanceId) == "" || os.Getenv(envTestDatabaseId) == "" { |
nothing calls this directly
no test coverage detected