Files
httprunner/boomer_test.go
2021-09-22 19:49:26 +08:00

23 lines
289 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,
},
}
Run(testcase1, testcase2)
}