Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package py.gov.asuncion.springapp.web; import static junit.framework.TestCase.assertEquals; import static junit.framework.TestCase.assertNotNull; import org.junit.Test; import org.springframework.web.servlet.ModelAndView; /** * * @author vinsfran */ public class HelloControllerTests { @Test public void testHandleRequestView() throws Exception { HelloController controller = new HelloController(); ModelAndView modelAndView = controller.handleRequest(null, null); assertEquals("hello", modelAndView.getViewName()); assertNotNull(modelAndView.getModel()); String nowValue = (String) modelAndView.getModel().get("now"); assertNotNull(nowValue); } }