首页 > 编程语言 > 详细

Spring与Junit测试整合

时间:2018-04-02 23:30:15      阅读:305      评论:0      收藏:0      [点我收藏+]

一、引入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测试整合

原文:https://www.cnblogs.com/cat-fish6/p/8698499.html

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