首页 > 编程语言 > 详细

Spring整合Junit进行单元测试

时间:2015-10-28 10:37:31      阅读:290      评论:0      收藏:0      [点我收藏+]

I. 加入依赖包

  1. Spring Test (如spring-test-2.5.4.jar)
  2. JUnit 4 
  3. Spring 其他相关包

II.新建Junit Test Case

技术分享

III.读取配置文件

 


@RunWith(SpringJUnit4ClassRunner.class)

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

public class GoodsServiceTest {
    @Resource
    private GoodsService goodsServiceImpl;
    @Test
    public void test(){
    //加载Log4j配置
    PropertyConfigurator.configure(Test.class.getClassLoader().getResource("log4j.properties"));  
     }

}

注意:要加载的applicationContext.xml的路径问题:上述的代码是基于classpath,因此applicationContext.xml和log4j.properties必须放在classpath下(详情:http://www.cnblogs.com/qiqiweige/p/4916458.html)。

III.运行

右键Run As-->JUnit Test

Spring整合Junit进行单元测试

原文:http://www.cnblogs.com/qiqiweige/p/4916557.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!