Package org.gtugs.web

Examples of org.gtugs.web.AboutController


* @author jasonacooper@google.com (Jason Cooper)
*/
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

Related Classes of org.gtugs.web.AboutController

Copyright © 2018 www.massapicom. 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.