(t *testing.T, a, b any, msgAndArgs ...string)
| 40 | } |
| 41 | } |
| 42 | func RequireEqualValues(t *testing.T, a, b any, msgAndArgs ...string) { |
| 43 | if !ObjectsAreEqualValues(a, b) { |
| 44 | Failnow(t, fmt.Sprintf("Not equal: \n"+ |
| 45 | "expected: %v\n"+ |
| 46 | "actual : %v", a, b), msgAndArgs...) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func Fail(t testing.TB, xs string, msgs ...string) { |
| 51 | var testName string |
searching dependent graphs…