Java单元测试之 Spring MVC / Restful
spring-test同样提供内置MVC容器,可以对Spring MVC进行单元测试
SpringMVCDemoTest.java
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextCon