SpringJunit4测试
Posted 追梦少年_09
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringJunit4测试相关的知识,希望对你有一定的参考价值。
前段时间工作中遇到了,所以就简单学习了一下,只学到了点皮毛,
1.测试类
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:applicationContext.xml"})
public class SpringJunit4test
{
@Resource
Date date;
@Test
public void testas()
{
System.out.println(date.getTime());
}
@Autowired
ApplicationContext ctx;
@Test
public void testbb() throws Exception
{
DaoBean db = ctx.getBean(DaoBean.class);
db.show();
}
}
2.DaoBean
3.XML配置
以上是关于SpringJunit4测试的主要内容,如果未能解决你的问题,请参考以下文章
@RunWith(SpringRunner.class)和@RunWith(SpringJUnit4ClassRunner.class)的区别
@RunWith(SpringRunner.class)和@RunWith(SpringJUnit4ClassRunner.class)的区别
导入 org.springframework.test.context.junit4.SpringJUnit4ClassRunner 无法解析