init HttpBommer 🍰

This commit is contained in:
debugtalk
2021-09-19 13:24:50 +08:00
parent f7bae6ba61
commit 97abc197a4
15 changed files with 561 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
package httpboomer
import (
"testing"
)
func TestHttpBoomer(t *testing.T) {
testcase1 := &TestCase{
Config: TConfig{
Name: "TestCase1",
Weight: 2,
},
}
testcase2 := &TestCase{
Config: TConfig{
Name: "TestCase2",
Weight: 3,
},
}
HttpBoomer().Run(testcase1, testcase2)
}