mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
23 lines
289 B
Go
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)
|
|
}
|