测试驱动开发 JUNIT 单元测试类

13 篇文章 0 订阅

单元测试需要构造数据 , 而且会考虑到事务的回滚等等问题, 测试代码的构建如下: 

 

路径问题:

 

1 - 在 SRC 目录下:

@ContextConfiguration(locations={"classpath:spring/application*.xml"})  

 

 

2 - 有时,我们的application配置文件放在 WEB-INF 目录下, 那么配置:

@ContextConfiguration(locations={"file:WebRoot/WEB-INF/application*.xml"})  

 

 

@RunWith(org.springframework.test.context.junit4.SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath*:spring/*.xml"})
@TransactionConfiguration(defaultRollback = true)
@Transactional
public class SearchImplTest {
	@Resource
	private SearchBusiness searchBusiness;
	@Test
	public void testSearch(){
		SearchDto searchDto = new SearchDto();
		Calendar c = Calendar.getInstance();
		c.add(Calendar.DATE, -100);
		searchDto.setBeginDate(c.getTime());
		c.add(Calendar.DATE, 300);
		searchDto.setEndDate(c.getTime());
		searchDto.setCityCode("001001001001");
		SearchResponseDto responseDto = searchBusiness.search(searchDto);
//		JsonShowUtils.show(responseDto.getHotelList());
		JsonShowUtils.show(responseDto, "responseDto");
	}
	

 

这样, 即使不开服务器, 也能跑单元测试 .

 

而且,不必担心据库的修改, 因为加了事务的自动回滚  ..

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值