Package test.server

Examples of test.server.IndexController


public class TestResource {
 
  @Test
  public void testResource() throws NoSuchMethodException, SecurityException {
    IndexController controller = new IndexController();
    Resource resource = new Resource("utf-8");
    ControllerMetaInfo cm = new ControllerMetaInfo(controller,
        IndexController.class.getMethod("index4", HttpServletRequest.class, HttpServletResponse.class));
   
    resource.add("/user/id-?-?", cm);
View Full Code Here

TOP

Related Classes of test.server.IndexController

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.