fix: report transaction result

This commit is contained in:
debugtalk
2021-12-21 20:38:36 +08:00
parent e7ecd148d0
commit f11310a8bd
10 changed files with 85 additions and 51 deletions

View File

@@ -142,10 +142,10 @@ func (tc *TestCase) ToTCase() (*TCase, error) {
type testCaseSummary struct{}
type stepData struct {
name string // step name
stepType stepType // step type, testcase/request/transaction/rendezvous
success bool // step execution result
elapsed int64 // step execution time in millisecond(ms)
responseLength int64 // response body length
exportVars map[string]interface{} // extract variables
name string // step name
stepType stepType // step type, testcase/request/transaction/rendezvous
success bool // step execution result
elapsed int64 // step execution time in millisecond(ms)
contentSize int64 // response body length
exportVars map[string]interface{} // extract variables
}