TestNG.xml配置
2017-03-13 本文已影响0人
宇文臭臭
简单说明:
测试代码中在需要测试的方法前加上注释符,例如:
package com.yiban.test;
public class test2 {
@Parameters({ "first-name" }) //参数
@Test(groups={"g1","g2"}) //组名
public void test001() throws Exception {
System.out.println("test001");
}
}
Xml文件的写法: