mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-05 07:26:55 +08:00
init HttpBommer ✨🍰✨
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user