change: relocate tests

This commit is contained in:
debugtalk
2021-10-10 00:44:28 +08:00
parent e49d2a1b9c
commit 3537125b27
2 changed files with 35 additions and 35 deletions
-20
View File
@@ -1,7 +1,6 @@
package httpboomer
import (
"os"
"testing"
)
@@ -38,22 +37,3 @@ func TestHttpRunner(t *testing.T) {
t.Fatalf("run testcase error: %v", err)
}
}
func TestMain(m *testing.M) {
// setup, prepare demo json testcase file path
jsonPath := demoTestCaseJSONPath
err := demoTestCase.dump2JSON(jsonPath)
if err != nil {
os.Exit(1)
}
// run all tests
code := m.Run()
defer os.Exit(code)
// teardown
err = os.Remove(jsonPath)
if err != nil {
os.Exit(1)
}
}