SpringTest框架JUnit单元测试用例获取ApplicationContext实例的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringTest框架JUnit单元测试用例获取ApplicationContext实例的方法相关的知识,希望对你有一定的参考价值。
步骤1、继承AbstractJUnit4SpringContextTests
2、引入ApplicationContext
示例代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith (SpringJUnit4ClassRunner. class ) @ContextConfiguration (locations = { "/spring/applicationContext.xml" }) public class SpringTest extends AbstractJUnit4SpringContextTests { @Autowired protected ApplicationContext ctx; public <T> T getBean(Class<T> type) { return applicationContext.getBean(type); } public Object getBean(String beanName) { return applicationContext.getBean(beanName); } protected ApplicationContext getContext() { return applicationContext; } } |
以上是关于SpringTest框架JUnit单元测试用例获取ApplicationContext实例的方法的主要内容,如果未能解决你的问题,请参考以下文章