(t *testing.T, got, exp any)
| 3898 | } |
| 3899 | |
| 3900 | func assertAPIResponse(t *testing.T, got, exp any) { |
| 3901 | t.Helper() |
| 3902 | |
| 3903 | testutil.RequireEqualWithOptions(t, exp, got, []cmp.Option{ |
| 3904 | cmpopts.IgnoreUnexported(regexp.Regexp{}), |
| 3905 | }) |
| 3906 | } |
| 3907 | |
| 3908 | func assertAPIResponseLength(t *testing.T, got any, expLen int) { |
| 3909 | t.Helper() |
no test coverage detected
searching dependent graphs…