feat: extract variables

This commit is contained in:
debugtalk
2021-09-30 13:19:54 +08:00
parent 292424e635
commit df423722c3
6 changed files with 80 additions and 30 deletions

View File

@@ -67,3 +67,9 @@ type TestCase struct {
}
type TestCaseSummary struct{}
type StepData struct {
Name string // step name
Success bool // step execution result
ExportVars map[string]interface{} // extract variables
}