(t testing.TB, xs string, msgs ...string)
| 60 | } |
| 61 | |
| 62 | func Failnow(t testing.TB, xs string, msgs ...string) { |
| 63 | Fail(t, xs, msgs...) |
| 64 | t.FailNow() |
| 65 | } |
| 66 | |
| 67 | func ObjectsAreEqual(expected, actual any) bool { |
| 68 | if expected == nil || actual == nil { |
no test coverage detected
searching dependent graphs…