1. Spring测试单元使用总结

第一步:添加相关依赖

Spring单元测试包spring-test-4.0.0.RELEASE.jar

第二步:指定Spring配置文件的位置

@ContextConfiguration(locations = "classpath:applicationContext.xml")

第三步:指定单元测试驱动

默认是junit

@RunWith(SpringJUnit4ClassRunner.class)

第四步:代码演示
1
2
3
4
5
6
7
8
@ContextConfiguration(locations = "classpath:applicationContext.xml")
@RunWith(SpringJUnit4ClassRunner.class)
public class SpringTest {
@Test
public void test(){
System.out.println("测试Spring的单元测试");
}
}