Package org.encuestame.mvc.page

Examples of org.encuestame.mvc.page.SignInController


         * Test {@link SignInController}.
         * @throws Exception exception.
         */
        @Test
        public void testLoginController() throws Exception {
            final SignInController controller = new SignInController();
            //"/user/signin
            request = new MockHttpServletRequest(MethodJson.GET.toString(), "/user/signin");
            final ModelAndView mav = handlerAdapter.handle(request, response,
                controller);
            assertViewName(mav, "signin");
View Full Code Here

TOP

Related Classes of org.encuestame.mvc.page.SignInController

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.