use of org.springframework.security.core.session.SessionRegistryImpl in project spring-security by spring-projects.
the class ConcurrentSessionFilterTests method setLogoutHandlersWhenNullThenThrowsException.
@Test(expected = IllegalArgumentException.class)
public void setLogoutHandlersWhenNullThenThrowsException() {
ConcurrentSessionFilter filter = new ConcurrentSessionFilter(new SessionRegistryImpl());
filter.setLogoutHandlers(null);
}
Aggregations