gtest 过滤 选择部分测试用例执行

2024-06-09 14:18

本文主要是介绍gtest 过滤 选择部分测试用例执行,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

包含main函数的gtest源文件编译为可执行程序spider,使用gtest_filter命令行参数过滤case2测试用例关联的所有测试项:
./spider --gtest_filter=case2.*

CutOneVertex为测试项(TEST(tc_linked_directiongraph, CutOneVertex))
./spider --gtest_filter=*CutOneVertex

int main(int argc, char ****argv**) {testing::InitGoogleTest(&argc, **argv**);rc = RUN_ALL_TESTS();return rc;
}

[uxdb@localhost backend]$ ./spider --gtest_filter=tc_linked_directiongraph_5vertex_5edge_1circle.*
<<<<<<<<<<<< Running main() from spider.cc
<<<<<<<<<<<< notice - initialize uxdb master environment … done
Note: Google Test filter = tc_linked_directiongraph_5vertex_5edge_1circle.*
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from tc_linked_directiongraph_5vertex_5edge_1circle
[ RUN ] tc_linked_directiongraph_5vertex_5edge_1circle.FindPathBetweenTwoVertex

[ OK ] tc_linked_directiongraph_5vertex_5edge_1circle.FindPathBetweenTwoVertex (0 ms)
[----------] 1 test from tc_linked_directiongraph_5vertex_5edge_1circle (0 ms total)

[----------] Global test environment tear-down
[==========] 1 test from 1 test suite ran. (0 ms total)
[ PASSED ] 1 test.

其实在命令行带/?参数执行编译好的测试程序,就知道gTest这些开关:
附在下面
This program contains tests written using Google Test. You can use the
following command line flags to control its behavior:

Test Selection:
–gtest_list_tests
List the names of all tests instead of running them. The name of
TEST(Foo, Bar) is “Foo.Bar”.
gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
Run only the tests whose name matches one of the positive patterns but
none of the negative patterns.
‘?’ matches any single character;
‘*’ matches any substring;
‘:’ separates two patterns.
–gtest_also_run_disabled_tests
Run all disabled tests too.

[uxdb@localhost backend]$ ./spider /?
<<<<<<<<<<<< Running main() from spider.cc
This program contains tests written using Google Test. You can use the
following command line flags to control its behavior:

Test Selection:
–gtest_list_tests
List the names of all tests instead of running them. The name of
TEST(Foo, Bar) is “Foo.Bar”.
–gtest_filter=POSTIVE_PATTERNS[-NEGATIVE_PATTERNS]
Run only the tests whose name matches one of the positive patterns but
none of the negative patterns. ‘?’ matches any single character; ‘*’
matches any substring; ‘:’ separates two patterns.
–gtest_also_run_disabled_tests
Run all disabled tests too.

Test Execution:
–gtest_repeat=[COUNT]
Run the tests repeatedly; use a negative count to repeat forever.
–gtest_shuffle
Randomize tests’ orders on every iteration.
–gtest_random_seed=[NUMBER]
Random number seed to use for shuffling test orders (between 1 and
99999, or 0 to use a seed based on the current time).

Test Output:
–gtest_color=(yes|no|auto)
Enable/disable colored output. The default is auto.
–gtest_print_time=0
Don’t print the elapsed time of each test.
–gtest_output=(json|xml)[:DIRECTORY_PATH/|:FILE_PATH]
Generate a JSON or XML report in the given directory or with the given
file name. FILE_PATH defaults to test_detail.xml.
–gtest_stream_result_to=HOST:PORT
Stream test results to the given server.

Assertion Behavior:
–gtest_death_test_style=(fast|threadsafe)
Set the default death test style.
–gtest_break_on_failure
Turn assertion failures into debugger break-points.
–gtest_throw_on_failure
Turn assertion failures into C++ exceptions for use by an external
test framework.
–gtest_catch_exceptions=0
Do not report exceptions as test failures. Instead, allow them
to crash the program or throw a pop-up (on Windows).

Except for --gtest_list_tests, you can alternatively set the corresponding
environment variable of a flag (all letters in upper-case). For example, to
disable colored text output, you can either specify --gtest_color=no or set
the GTEST_COLOR environment variable to no.

For more information, please read the Google Test documentation at
https://github.com/google/googletest/. If you find a bug in Google Test
(not one in your own code or tests), please report it to
googletestframework@googlegroups.com.
<<<<<<<<<<<< notice - initialize uxdb master environment … done
[uxdb@localhost backend]$

这篇关于gtest 过滤 选择部分测试用例执行的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1045414

相关文章

SpringIntegration消息路由之Router的条件路由与过滤功能

《SpringIntegration消息路由之Router的条件路由与过滤功能》本文详细介绍了Router的基础概念、条件路由实现、基于消息头的路由、动态路由与路由表、消息过滤与选择性路由以及错误处理... 目录引言一、Router基础概念二、条件路由实现三、基于消息头的路由四、动态路由与路由表五、消息过滤

Mysql删除几亿条数据表中的部分数据的方法实现

《Mysql删除几亿条数据表中的部分数据的方法实现》在MySQL中删除一个大表中的数据时,需要特别注意操作的性能和对系统的影响,本文主要介绍了Mysql删除几亿条数据表中的部分数据的方法实现,具有一定... 目录1、需求2、方案1. 使用 DELETE 语句分批删除2. 使用 INPLACE ALTER T

Spring定时任务只执行一次的原因分析与解决方案

《Spring定时任务只执行一次的原因分析与解决方案》在使用Spring的@Scheduled定时任务时,你是否遇到过任务只执行一次,后续不再触发的情况?这种情况可能由多种原因导致,如未启用调度、线程... 目录1. 问题背景2. Spring定时任务的基本用法3. 为什么定时任务只执行一次?3.1 未启用

java streamfilter list 过滤的实现

《javastreamfilterlist过滤的实现》JavaStreamAPI中的filter方法是过滤List集合中元素的一个强大工具,可以轻松地根据自定义条件筛选出符合要求的元素,本文就来... 目录1. 创建一个示例List2. 使用Stream的filter方法进行过滤3. 自定义过滤条件1. 定

Redis如何实现刷票过滤

《Redis如何实现刷票过滤》:本文主要介绍Redis如何实现刷票过滤问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录引言一、概述二、技术选型三、搭建开发环境四、使用Redis存储数据四、使用SpringBoot开发应用五、 实现同一IP每天刷票不得超过次数六

基于Python实现多语言朗读与单词选择测验

《基于Python实现多语言朗读与单词选择测验》在数字化教育日益普及的今天,开发一款能够支持多语言朗读和单词选择测验的程序,对于语言学习者来说无疑是一个巨大的福音,下面我们就来用Python实现一个这... 目录一、项目概述二、环境准备三、实现朗读功能四、实现单词选择测验五、创建图形用户界面六、运行程序七、

grom设置全局日志实现执行并打印sql语句

《grom设置全局日志实现执行并打印sql语句》本文主要介绍了grom设置全局日志实现执行并打印sql语句,包括设置日志级别、实现自定义Logger接口以及如何使用GORM的默认logger,通过这些... 目录gorm中的自定义日志gorm中日志的其他操作日志级别Debug自定义 Loggergorm中的

前端知识点之Javascript选择输入框confirm用法

《前端知识点之Javascript选择输入框confirm用法》:本文主要介绍JavaScript中的confirm方法的基本用法、功能特点、注意事项及常见用途,文中通过代码介绍的非常详细,对大家... 目录1. 基本用法2. 功能特点①阻塞行为:confirm 对话框会阻塞脚本的执行,直到用户作出选择。②

JavaScript中的reduce方法执行过程、使用场景及进阶用法

《JavaScript中的reduce方法执行过程、使用场景及进阶用法》:本文主要介绍JavaScript中的reduce方法执行过程、使用场景及进阶用法的相关资料,reduce是JavaScri... 目录1. 什么是reduce2. reduce语法2.1 语法2.2 参数说明3. reduce执行过程

在MySQL执行UPDATE语句时遇到的错误1175的解决方案

《在MySQL执行UPDATE语句时遇到的错误1175的解决方案》MySQL安全更新模式(SafeUpdateMode)限制了UPDATE和DELETE操作,要求使用WHERE子句时必须基于主键或索引... mysql 中遇到的 Error Code: 1175 是由于启用了 安全更新模式(Safe Upd