(t *testing.T, a interface{}, b interface{})
| 23 | } |
| 24 | |
| 25 | func refute(t *testing.T, a interface{}, b interface{}) { |
| 26 | if a == b { |
| 27 | t.Errorf("Did not expect %v (type %v) - Got %v (type %v) at %s", b, reflect.TypeOf(b), a, reflect.TypeOf(a), getCaller()) |
| 28 | } |
| 29 | } |
no test coverage detected