* Test that method throw UnsupportedOperationException.
*/
@Test(expected = UnsupportedOperationException.class)
public void testMapUserToContext()
{
final UserDetailsServiceImpl svc = context.mock(UserDetailsServiceImpl.class);
UserDetailsContextMapperImpl sut = new UserDetailsContextMapperImpl(svc);
sut.mapUserToContext(null, null);
}