Junit使用之四---使用Junit测试WEB项目

时间:2021-07-27 05:12:43

      其实这篇文章是之前就写了的,现在把他归入Junit系列,这里说的web项目,是指用了spring来管理的的Web Project。因为涉及到Ioc容器,所以就不能像测试一个单纯的类那样来测试了。我们需要对web配置文件进行加载。 spring提供了这个测试功能,它封装了Junit,提供了一个测试包:spring-test.jar。这样一来测试就变得比较简单。

代码如下:


public class Test extends AbstractTransactionalDataSourceSpringContextTests{

private ApplicationContext context;

protected String[] getConfigLocations() {
return new String[] { "classpath*:application-persistence.xml" };
}
}
public ApplicationContext getContext() {
        return context;
    }

    public void setContext(ApplicationContext context) {
        this.context = context;
    }
   


这样,上下文环境就初始化好了,context就可以用了,当然了JUnit是必备的

spring-test.jar在我资源中有下载