Lines Matching refs:got
1057 got := testCase.in1
1064 err = AppendProperties(got, testCase.in2, testCase.filter)
1067 err = PrependProperties(got, testCase.in2, testCase.filter)
1070 err = ExtendProperties(got, testCase.in2, testCase.filter, OrderReplace)
1073 check(t, testType, testString, got, err, testCase.out, testCase.err)
1081 got := testCase.in1
1108 err = ExtendProperties(got, testCase.in2, testCase.filter, order)
1110 check(t, testType, testString, got, err, testCase.out, testCase.err)
1394 got := testCase.in1
1401 err = AppendMatchingProperties(got, testCase.in2, testCase.filter)
1404 err = PrependMatchingProperties(got, testCase.in2, testCase.filter)
1407 err = ExtendMatchingProperties(got, testCase.in2, testCase.filter, OrderReplace)
1410 check(t, testType, testString, got, err, testCase.out, testCase.err)
1418 got := testCase.in1
1445 err = ExtendMatchingProperties(got, testCase.in2, testCase.filter, order)
1447 check(t, testType, testString, got, err, testCase.out, testCase.err)
1452 got interface{}, err error,
1456 e := func(s string, expected, got interface{}) {
1463 t.Errorf(" got: %s", p(got))
1480 if !reflect.DeepEqual(expected, got) {
1481 e("output:", expected, got)