TestNG.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配置)