Files
httprunner/boomer_test.go
debugtalk 6b7955a955 init HttpBommer 🍰
2021-09-19 13:24:50 +08:00

23 lines
302 B
Go

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)
}