美文网首页
TestNG.xml配置

TestNG.xml配置

作者: 宇文臭臭 | 来源:发表于2017-03-13 14:48 被阅读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文件的写法:

相关文章

网友评论

      本文标题:TestNG.xml配置

      本文链接:https://www.haomeiwen.com/subject/gfofnttx.html