mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-18 22:47:34 +08:00
21 lines
612 B
Go
21 lines
612 B
Go
package hrp
|
|
|
|
type StepType string
|
|
|
|
const (
|
|
stepTypeRequest StepType = "request"
|
|
stepTypeAPI StepType = "api"
|
|
stepTypeTestCase StepType = "testcase"
|
|
stepTypeTransaction StepType = "transaction"
|
|
stepTypeRendezvous StepType = "rendezvous"
|
|
stepTypeThinkTime StepType = "thinktime"
|
|
stepTypeWebSocket StepType = "websocket"
|
|
stepTypeAndroid StepType = "android"
|
|
stepTypeHarmony StepType = "harmony"
|
|
stepTypeIOS StepType = "ios"
|
|
stepTypeShell StepType = "shell"
|
|
|
|
stepTypeSuffixExtraction StepType = "_extraction"
|
|
stepTypeSuffixValidation StepType = "_validation"
|
|
)
|