Unit test « MVC « Spring Q&A





1. Unit tests for Spring JsonView    stackoverflow.com

I started working with Spring MVC recently so I may be missing something obvious. I am using the Spring MVC JsonView view and I would like to unit test the json that's ...

2. How to mock a private inner class    stackoverflow.com

I have a spring application and I want to create a unitary test on a controller like this one. The problem is that the Wrapper class is a private inner class, ...

3. What are the benefits of Spring Framework in Terms of Testing Application?    stackoverflow.com

We have heard a lot about Benefits of Spring like it offers loose coupling, dependency injection, inversion of control etc but from testing point of view, I have couple of question. ...

4. unit testing Freemarker and Spring    stackoverflow.com

I have a freemarker template and I want to write a test that checks the output for a given model input.

@Test
public void testProcessTemplateWithModel() throws Exception {
    final Configuration ...

5. Testing views with Spring Framework at the same time you run unit tests?    stackoverflow.com

Is there a way to test views rendered in freemarker at the same time I run my unit tests? It would be great if the test failed if Freemarker threw an ...

6. How to unit test file uploads with MockHttpServletRequest?    stackoverflow.com

I've a Spring (3.0) Controller with a method which has HttpServletRequest as one of the parameters, since it's handling (multiple) file uploads.

@RequestMapping(value = "/classified/{idClassified}/dealer/{idPerson}/upload",
    method = RequestMethod.POST)
@ResponseBody
public final ...