简单说明:
测试代码中在需要测试的方法前加上注释符,例如:
package com.yiban.test;
public class test2 {
@Parameters({ "first-name" }) //参数
@Test(groups={"g1","g2"}) //组名
public void test001() throws Exception {
System.out.println("test001");
}
}
Xml文件的写法:
简单说明:
测试代码中在需要测试的方法前加上注释符,例如:
package com.yiban.test;
public class test2 {
@Parameters({ "first-name" }) //参数
@Test(groups={"g1","g2"}) //组名
public void test001() throws Exception {
System.out.println("test001");
}
}
Xml文件的写法:
本文标题:TestNG.xml配置
本文链接:https://www.haomeiwen.com/subject/gfofnttx.html
网友评论