Lines Matching refs:Result
36 Result string `json:"result"`
54 func (t *Tester) DoTestTask(device string, ctx context.Context) ([]tester.Result, error) {
73 func (t *Tester) DoTestCase(device string, testCase string, ctx context.Context) (tester.Result, error) {
81 defaultResult := tester.Result{}
106 func (t *Tester) DoTestCases(device string, testCases []string, ctx context.Context) ([]tester.Result, error) {
127 func (t *Tester) processResult() ([]tester.Result, error) {
141 var ret []tester.Result
143 if r.Result == testResultPass {
144 ret = append(ret, tester.Result{TestCaseName: r.TestCase, Status: tester.ResultPass})
146 ret = append(ret, tester.Result{TestCaseName: r.TestCase, Status: tester.ResultFail})