(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func TestSaslAuthenticateResponseV2(t *testing.T) { |
| 51 | msg := "err" |
| 52 | response := &SaslAuthenticateResponse{ |
| 53 | Version: 2, |
| 54 | Err: ErrSASLAuthenticationFailed, |
| 55 | ErrorMessage: &msg, |
| 56 | SaslAuthBytes: []byte(`msg`), |
| 57 | SessionLifetimeMs: 1, |
| 58 | } |
| 59 | |
| 60 | testResponse(t, "authenticate response v2", response, saslAuthenticateResponseErrV2) |
| 61 | } |
nothing calls this directly
no test coverage detected