(t *testing.T)
| 26 | ) |
| 27 | |
| 28 | func TestSaslAuthenticateResponse(t *testing.T) { |
| 29 | response := new(SaslAuthenticateResponse) |
| 30 | response.Err = ErrSASLAuthenticationFailed |
| 31 | msg := "err" |
| 32 | response.ErrorMessage = &msg |
| 33 | response.SaslAuthBytes = []byte(`msg`) |
| 34 | |
| 35 | testResponse(t, "authenticate response", response, saslAuthenticateResponseErr) |
| 36 | } |
| 37 | |
| 38 | func TestSaslAuthenticateResponseV1(t *testing.T) { |
| 39 | response := new(SaslAuthenticateResponse) |
nothing calls this directly
no test coverage detected