@Test(groups = {""})

  在执行测试用例的时候,往往一个功能依赖多个测试用例,比如流程的测试,那么这个时候就可以用到组测试,把流程涉及到测试用例都分到同一组里,按组执行即可。

  testNG的组通过@Test的groups属性来指定的,一个方法可以属于一个组(@Test(groups = {"checkintest"})),也可以属于多个组(@Test(groups = {"functest","checkintest"}))。

  假设现在有3个java代码,common.java、functionA.java、functionB.java,测试流程涉及到common.java中 login() 和 quit() 方法、functionA.java中的 testMethod1() 方法、functionB.java中的 testMethod3() 方法,那么可以将这4个方法分到同一组里functest,代码如下:

common.java:

import org.testng.annotations.Test;

public class common {
@Test(groups = {"functest","checkintest"})
public void login() {
System.out.println("login");
} @Test(groups = {"functest","checkintest"})
public void quit() {
System.out.println("quit");
} @Test(groups = {"checkintest"})
public void init() {
System.out.println("init");
}
}

functionA.java:

import org.testng.annotations.Test;

public class functionA {
@Test(groups = {"functest"})
public void testMethod1() {
System.out.println("this is testMethod1");
} @Test(groups = {"functest2"})
public void testMethod2() {
System.out.println("this is testMethod2");
}
}

functionB.java:

import org.testng.annotations.Test;

public class functionB {
@Test(groups = {"functest"})
public void testMethod3() {
System.out.println("this is testMethod3");
} @Test(groups = {"functest2"})
public void testMethod4() {
System.out.println("this is testMethod4");
}
}

testng.xml:

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="Suite1" verbose="1" >
<test name="Regression1" preserve-order="true">
<groups>
<run>
<include name = "functest" />
</run>
</groups>
<classes>
<class name="common"></class>
<class name="functionA"></class>
<class name="functionB"></class>
</classes>
</test>
</suite>

注意:testng.xml需要指定要测试的组(<groups>……</groups>)和组所在的class(<classes>……</classes>)

运行testng.xml,执行结果如下:

login
quit
this is testMethod1
this is testMethod3

@Test(priority = )

一般quit都是在流程的最后才执行,如何控制组里方法执行的顺序呢?可以通过@Test的priority属性,testNG按照priority从小到大的顺序执行

修改common.java,在@Test中添加属性priority = 1和priority = 4:

import org.testng.annotations.Test;

public class common {
@Test(groups = {"functest","checkintest"},priority = 1)
public void login() {
System.out.println("login");
} @Test(groups = {"functest","checkintest"},priority = 4)
public void quit() {
System.out.println("quit");
} @Test(groups = {"checkintest"})
public void init() {
System.out.println("init");
}
}

修改functionA.java,在@Test中添加属性priority = 2:

import org.testng.annotations.Test;

public class functionA {
@Test(groups = {"functest"},priority = 2)
public void testMethod1() {
System.out.println("this is testMethod1");
} @Test(groups = {"functest2"})
public void testMethod2() {
System.out.println("this is testMethod2");
}
}

修改functionB.java,在@Test中添加属性priority = 3:

import org.testng.annotations.Test;

public class functionB {
@Test(groups = {"functest"}, priority = 3)
public void testMethod3() {
System.out.println("this is testMethod3");
} @Test(groups = {"functest2"})
public void testMethod4() {
System.out.println("this is testMethod4");
}
}

再次运行testng.xml,执行结果如下:

login
this is testMethod1
this is testMethod3
quit

如何只执行组里 testMethod1() 和 testMethod3() 方法,而不执行 login() 和 quit() 方法呢?

修改testng.xml,添加<exclude name="checkintest"></exclude>,排除在checkintest组里的方法

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >

<suite name="Suite1" verbose="1" >
<test name="Regression1" preserve-order="true">
<groups>
<run>
<include name = "functest" />
<exclude name="checkintest"></exclude>
</run>
</groups>
<classes>
<class name="common"></class>
<class name="functionA"></class>
<class name="functionB"></class>
</classes>
</test>
</suite>

再次运行testng.xml,执行结果如下:

this is testMethod1
this is testMethod3

testNG之组测试的更多相关文章

  1. TestNG的组测试和组中组测试

    在编写测试的过程中,我们经常遇到只想执行个别或者某一部分/某一类型的测试用例,这时我们可以使用TestNG的分组测试方法 分组测试在配置时,TestNG执行的原则是:只保留最小集合进行执行 看代码: ...

  2. TestNg 4.组测试中的方法分组测试

    看以下代码: package com.course.testng.groups; import org.testng.annotations.AfterGroups; import org.testn ...

  3. testng入门教程7 TestNG组测试

    在TestNG中组测试是一个新的创新功能,它不存在于JUnit框架,它允许调度到适当的部分方法和瓶坯复杂的测试方法分组.您不仅可以声明属于群体的那些方法,但你也可以指定一组包含其他组.然后,TestN ...

  4. 学习使用TestNG进行数据驱动测试

    转自: https://mp.weixin.qq.com/s/8Bd8LEhiC2pu2VMcyNMGlQ 学习使用TestNG进行数据驱动测试 赵吃饭 51Testing软件测试网 前天   学习使 ...

  5. testng入门教程12 TestNG执行多线程测试

    testng入门教程 TestNG执行多线程测试 testng入门教程 TestNG执行多线程测试 并行(多线程)技术在软件术语里被定义为软件.操作系统或者程序可以并行地执行另外一段程序中多个部分或者 ...

  6. testng多线程并行执行测试

    testng多线程并行执行测试 testng多线程并行执行测试 并行(多线程)技术在软件术语里被定义为软件.操作系统或者程序可以并行地执行另外一段程序中多个部分或者子组件的能力.TestNG允许我们以 ...

  7. testNG之异常测试

    @Test(expectedExceptions = ) 在测试的时候,某些用例的输入条件,预期结果是代码抛出异常,那么这个时候就需要testNG的异常测试,先看一段会抛出异常的代码 exceptio ...

  8. TestNG 组测试

    方法分组测试 1. 给@Test注解后面加groups参数,如 @Test(groups = "groupa") 2. 可以添加@BeforeGroups和@AfterGroups ...

  9. TestNG(七)组测试

    package com.course.testng.groups; import org.testng.annotations.AfterGroups; import org.testng.annot ...

随机推荐

  1. boost number handling

    Boost.Integer defines specialized for integers. 1. types for integers with number of bits #include & ...

  2. 威胁预警|Solr velocity模板注入远程命令执行已加入watchbog武器库,漏洞修补时间窗口越来越短

    概述 近日,阿里云安全团队监测到挖矿团伙watchbog更新了其使用的武器库,增加了最新Solr Velocity 模板注入远程命令执行漏洞的攻击方式,攻击成功后会下载门罗币挖矿程序进行牟利.建议用户 ...

  3. HDU 6090 Rikka with Graph —— 2017 Multi-University Training 5

    Rikka with Graph Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) ...

  4. java使用开源类库Tesseract实现图片识别

    Tesseract-OCR支持中文识别,并且开源和提供全套的训练工具,是快速低成本开发的首选. Tess4J则是Tesseract在Java PC上的应用 Tesseract的OCR引擎最先由HP实验 ...

  5. blob格式导出文件

    最近在做blob流导出相关功能,其中需要导出excel.csv.word.zip压缩文件之类的,在导出excel和word中需要知道对应的content-type属性,正好看到下面这篇文章,感觉挺好的 ...

  6. php使用curl实现get和post请求的方法,数据传输urldecode和json

    PHP支持CURL库,利用URL语法规定来传输文件和数据的工具,支持很多协议,包括HTTP.FTP.TELNET等. 优点:是可以通过灵活的选项设置不同的HTTP协议参数,并且支持HTTPS.CURL ...

  7. lua实现简单

    MessageManager.lua local messageManager = {mEventTable = {},mEventUserData = {}} --注册事件function mess ...

  8. ubuntu下node.js 环境搭建

    由于使用gulp.js来对前端项目进行管理,所以搭建了node.js的环境 首先, 需要安装node, npm 去官网下载安装包,解压后放到你的安装的目录.在这里我的是/opt/node-v6.11. ...

  9. web前端典型示例

    1.轨迹回放:https://openlayers.org/en/v4.6.5/examples/feature-move-animation.html https://blog.csdn.net/s ...

  10. Python 进阶_函数式编程

    目录 目录 函数式编程 Python 函数式编程的特点 高阶函数 匿名函数 lambda 函数式编程相关的内置函数 filter 序列对象过滤器 map reduce 折叠 自定义的排序函数 最后 函 ...