(tb testing.TB, v1, v2 interface{})
| 6 | ) |
| 7 | |
| 8 | func assertEqual(tb testing.TB, v1, v2 interface{}) { |
| 9 | if !reflect.DeepEqual(v1, v2) { |
| 10 | tb.Fatalf("'%+v' and '%+v' are not equal", v1, v2) |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | func assertNoErr(tb testing.TB, err error) { |
| 15 | if err != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…