Spring 整合 Junit

Posted 暮尘时雨

tags:

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

一、导入jar包

二、使用@RunWith 注解替换原有运行器 [main()]

  /** 
   *
  * @Company http://www.ithiema.com  
  * @Version 1.0  */ 
  @RunWith(SpringJUnit4ClassRunner.class) 
  public class AccountServiceTest { }

三、使用@ContextConfiguration 指定 spring 配置文件的位置

  /** 
   * @ContextConfiguration 注解:  
          locations 属性:用于指定配置文件的位置。如果是类路径下,需要用 classpath:表明  
          classes 属性:用于指定注解的类。当不使用 xml 配置时,需要用此属性指定注解类的位置 
  * @Company http://www.ithiema.com  
  * @Version 1.0  
  */ 
  @RunWith(SpringJUnit4ClassRunner.class) 
  @ContextConfiguration(locations= {"classpath:bean.xml"}) 
  public class AccountServiceTest { }

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

在Spring中整合JUnit单元测试

Spring整合JUnit

Spring 整合Junit

Spring整合JUnit单元测试

Spring整合Junit测试

08-spring整合 junit