}
public void testAbstractAuthenticationFailureEvent() {
Authentication auth = getAuthentication();
AuthenticationException exception = new DisabledException("TEST");
AbstractAuthenticationFailureEvent event = new AuthenticationFailureDisabledEvent(auth, exception);
assertEquals(auth, event.getAuthentication());
assertEquals(exception, event.getException());
}