(t *testing.T, x, y interface{}, m string)
| 86 | } |
| 87 | |
| 88 | func expectEqual(t *testing.T, x, y interface{}, m string) { |
| 89 | if x != y { |
| 90 | t.Errorf("%s doesn't match: %v, %v\n", m, x, y) |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | func expectDeepEqual(t *testing.T, x, y interface{}, m string) bool { |
| 95 | if reflect.DeepEqual(x, y) { |
no outgoing calls
no test coverage detected