Question

i want to set the UserPrincipal() to null from junit of my application. For that i have tried to set the request to null but i got null pointer exception. Please help me to resolve the problem. Below is my code

if(request.getUserPrincipal()!=null){
     username=request.getUserPrincipal().getName();
}

i want to get the condition false.

Was it helpful?

Solution

i have found the solution...

get MockHttpServletRequest from junit and set userprinciple to null

MockHttpServletRequest httpServletRequest = new MockHttpServletRequest();
httpServletRequest.setUserPrincipal(null);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top