feat: extract variables

This commit is contained in:
debugtalk
2021-09-30 13:19:54 +08:00
parent d92b466897
commit 2a793cfc99
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
}