(t *testing.T, a, b interface{})
| 147 | } |
| 148 | |
| 149 | func assertEqual(t *testing.T, a, b interface{}) { |
| 150 | t.Helper() |
| 151 | if !reflect.DeepEqual(a, b) { |
| 152 | t.Fatalf("expecting values to be equal but got: '%v' and '%v'", a, b) |
| 153 | } |
| 154 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…