Spring与Junit测试整合

Posted cat_fish

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring与Junit测试整合相关的知识,希望对你有一定的参考价值。

一、引入spring测试包:text包

二、@RunWith:指定spring对junit提供的一个运行器

  @ContextConfiguration:  locations指定spring配置文件位置

 1 @RunWith(SpringJUnit4ClassRunner.class)
 2 @ContextConfiguration(locations={"classpath:ApplicationContext.xml"})
 3 public class TestSpring1 {
 4     @Autowired
 5     private PersonService ps;
 6     @Test
 7     public void test1(){
 8         ps.savePerson();
 9     }
10 }

 

以上是关于Spring与Junit测试整合的主要内容,如果未能解决你的问题,请参考以下文章

Spring与Junit测试整合

spring框架学习spring与junit整合测试

在Spring中整合JUnit单元测试

Spring整合JUnit单元测试

Spring整合Junit测试

Spring 整合Junit