assertValue("MockHttpServletResponse", "Redirected URL", this.response.getRedirectedUrl());
}
@Test
public void testPrintHandlerNull() throws Exception {
StubMvcResult mvcResult = new StubMvcResult(this.request, null, null, null, null, null, this.response);
this.handler.handle(mvcResult);
assertValue("Handler", "Type", null);
}