(t testing.TB, ctx context.Context, expectedMessage string, logString string)
| 59 | } |
| 60 | |
| 61 | func RequireLogMessage(t testing.TB, ctx context.Context, expectedMessage string, logString string) { |
| 62 | requireLogIs(t, expectedMessage, func() { InfofCtx(ctx, KeyAll, standardMessage) }) |
| 63 | } |
| 64 | |
| 65 | func TestLogFormat(t *testing.T) { |
| 66 | testCases := []struct { |
no test coverage detected