Package org.gtugs.web

Examples of org.gtugs.web.AboutController.handleRequest()


*/
public class AboutControllerTests extends TestCase {

  public void testHandleRequestView() throws Exception{
    AboutController controller = new AboutController();
    ModelAndView modelAndView = controller.handleRequest(null, null);
    assertEquals("about", modelAndView.getViewName());
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.