我是靠谱客的博主 孝顺太阳,最近开发中收集的这篇文章主要介绍spring unit test autowired,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Spring下的单元测试是十分完善的,原来一直困扰的问题是:Service、Controller类使用的基础类都是Autowired,这样就不必在Context.xml中进行配置,调用者也无需写get、set方法,但问题是在进行unitTest过程中,test不能自动加载这些autowired的基础类,运行就会抛出null,

今天发现:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "/thesisContext.xml")
可以解决这个问题。

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "/thesisContext.xml")
public class ArticleServiceTest {
@Autowired
private IArticleService articleService;
@Before
@Test
public void testSaveArType() {
ArticleType at = new ArticleType();
at.setName("气候与全球经济");
int result = this.articleService.saveArType(at);
assertEquals(2,result);
}
}

问题全解决了。

public class ArticleService implements IArticleService {
@Autowired
private IArticleDao articleDao;
@Autowired
private IArticleTypeDao articleTypeDao;
public int saveArType(ArticleType at) {
return articleTypeDao.save(at);
}



最后

以上就是孝顺太阳为你收集整理的spring unit test autowired的全部内容,希望文章能够帮你解决spring unit test autowired所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部