I have a simple MVC application consisting of View->Controller->Service->Model.
My controllers are really skinny. All they do is call service method and populate the ModelAndView. Is it considered a good practice to unit tests controllers to make sure they set required properties in the ModelAndView while mocking the services completely?