==============================================================================
(m *testing.M)
| 35 | //============================================================================== |
| 36 | |
| 37 | func TestMain(m *testing.M) { |
| 38 | os.Exit(runTest(m)) |
| 39 | } |
| 40 | |
| 41 | // runTest initializes the environment for the tests and allows for |
| 42 | // the proper exit if the test fails or succeeds. |