Eclipse TestNG

1 篇文章 0 订阅
本文介绍了如何在Eclipse中安装TestNG插件,详细步骤包括在Eclipse Marketplace选择最新版本6.9并指定JDK1.7。此外,文章还提及在基于Spring的Maven项目中编写测试代码的过程。
摘要由CSDN通过智能技术生成

1.安装TestNG 插件

  在Eclipse Marketplace里安装插件,目前最新插件是6.9版本,要求的JDK是1.7,,否则会不能执行。

这里指定JDK,



2.编写测试代码:

  此项目基于Spring 的maven工程:

 

@ContextConfiguration(locations = { "classpath*:config/spring/spring-aop.xml",
        "classpath*:config/spring/spring-web.xml",
         "classpath*:config/spring/spring-dal.xml",
        "classpath*:spring-datasource-test.xml",
        "classpath*:config/spring/spring-init.xml",
        "classpath*:config/spring/spring-tsp-framework.xml",
        "classpath*:config/spring/spring-cache.xml",
        "classpath:config/spring/spring-tsp.xml",
        "classpath*:config/spring/spring-jms.xml", 
        "classpath*:config/spring/spring-log.xml"      
        })
@Test
public class BaseTest extends AbstractTestNGSpringContextTests {}
上面的@ContextConfiguration用来配置数据源等信息

此时可以编写测试类:

public class IDiyServiceTest extends  BaseTest {
	
	@Resource( name = "diyServiceImpl" )
	private IDiyService iDiyService;
	
  @Test
  public void testGetDiyInfoByProductId() {
	  ProductDetailRequestVo productDetailRequestVo=new ProductDetailRequestVo();
	  productDetailRequestVo.setProductType(2);
	  productDetailRequestVo.setProductId(5004635);
	  productDetailRequestVo.setRequestSourceCode(2);
	  ResponseVo resp=iDiyService.getDiyInfoByProductId(productDetailRequestVo);
	  Assert.notNull(resp.getData());
	  
  
  }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值