首页 > 基础知识 > 正文

单元测试工具

标签:gtest, BllseyeCoverage


目录

gtest

简介:Google C++单元测试框架—Gtest框架简介(译文)

显示所有测试用例

./xxx --gtest_list_tests

只执行部分测试用例

例如上面的输出是

TestNodeA.
  test_a1
  test_a2
TestNodeB.
  test_b1
  test_b2
  test_b3
  test_b4

那么,可以

./xxx --gtest_filter=TestNodeA.*
./xxx --gtest_filter=TestNodeA.test*
./xxx --gtest_filter=TestNodeA.test_a1

BullseyeCoverage

官网的下载页面:https://www.bullseye.com/cgi-bin/download.sh

简介:代码覆盖率工具BullseyeCoverage研究


原创文章,转载请注明出处!
本文链接:http://hxhlwf.github.io/posts/knowledge-testing-tools.html
上篇: 机器学习中的矩阵、向量求导
下篇: url

comment here..