feat: record response body length

This commit is contained in:
debugtalk
2021-10-16 15:59:53 +08:00
parent 291b972fc6
commit 714bdd8135
3 changed files with 13 additions and 9 deletions

View File

@@ -88,7 +88,8 @@ type TestCasePath struct {
type TestCaseSummary struct{}
type StepData struct {
Name string // step name
Success bool // step execution result
ExportVars map[string]interface{} // extract variables
Name string // step name
Success bool // step execution result
ResponseLength int64 // response body length
ExportVars map[string]interface{} // extract variables
}