(自用)gtest单元测试

打印 上一主题 下一主题

主题 1016|帖子 1016|积分 3048

gtest是Google的一套用于编写C++测试的框架,可以运行在许多平台上(包括Linux、Mac OS X、Windows、Cygwin等等)。基于xUnit架构。支持许多好用的特性,包括自动辨认测试、丰富的断言、断言自界说、死亡测试、非终止的失败、生成XML报告等等。

1.gtest优点



2.搭建测试框架

gtest下载地点: GitHub - google/googletest: GoogleTest - Google Testing and Mocking Framework

下载方法是:git clone GitHub - google/googletest: GoogleTest - Google Testing and Mocking Framework

安装方法是:

$ cd googletest

留意:如果在make 过程中报错,可在CMakeLists.txt 中增加如下行,再实行下面的命令:  SET(CMAKE_CXX_FLAGS "-std=c++11")  

$ cmake .    

$ make

然后在lib目录下会生成:libgmock.a libgmock_main.a libgtest.a libgtest_main.a

最后我们再sudo make install。



测试demo

目录布局:

要测试的两个函数如下:
simple1.cc
  1. #include "sample1.h"
  2. // Returns n! (the factorial of n).  For negative n, n! is defined to be 1.
  3. int Factorial(int n) {
  4.   int result = 1;
  5.   for (int i = 1; i <= n; i++) {
  6.     result *= i;
  7.   }
  8.   return result;
  9. }
  10. // Returns true iff n is a prime number.
  11. bool IsPrime(int n) {
  12.   // Trivial case 1: small numbers
  13.   if (n <= 1) return false;
  14.   // Trivial case 2: even numbers
  15.   if (n % 2 == 0) return n == 2;
  16.   // Now, we have that n is odd and n >= 3.
  17.   // Try to divide n by every odd number i, starting from 3
  18.   for (int i = 3; ; i += 2) {
  19.     // We only have to try i up to the square root of n
  20.     if (i > n/i) break;
  21.     // Now, we have i <= n/i < n.
  22.     // If n is divisible by i, n is not prime.
  23.     if (n % i == 0) return false;
  24.   }
  25.   // n has no integer factor in the range (1, n), and thus is prime.
  26.   return true;
  27. }
复制代码
头文件sample.h
  1. #ifndef GTEST_SAMPLES_SAMPLE1_H_
  2. #define GTEST_SAMPLES_SAMPLE1_H_
  3. // Returns n! (the factorial of n).  For negative n, n! is defined to be 1.
  4. int Factorial(int n);
  5. // Returns true iff n is a prime number.
  6. bool IsPrime(int n);
  7. #endif
复制代码
编写测试类

1.包罗头文件gtest/gtest.h、limits.h(最大int和最小int)
2.格式
  1. TEST(测试套名,测试用例名)
  2. {
  3.     //EXPECT_XX
  4. }
复制代码
一个测试套下可以有多个测试用例

eg:
simple_unittest.cc
  1. #include <limits.h>//包含最大最小数
  2. #include "sample1.h"
  3. #include "gtest/gtest.h"//gtest头文件
  4. namespace {
  5.     TEST(FactorialTest, Negative) {
  6.         // 测试名叫Negative,属于FactorialTest测试套
  7.         // 测试用例
  8.         EXPECT_EQ(1, Factorial(-5));//断言相等
  9.         EXPECT_EQ(1, Factorial(-1));
  10.         //前后顺序不影响
  11.         EXPECT_GT(Factorial(-10), 0);//断言大于
  12.     }
  13.     TEST(FactorialTest, Zero) {
  14.         EXPECT_EQ(1, Factorial(0));
  15.     }
  16.     TEST(FactorialTest, Positive) {
  17.         EXPECT_EQ(1, Factorial(1));
  18.         EXPECT_EQ(2, Factorial(2));
  19.         EXPECT_EQ(6, Factorial(3));
  20.         EXPECT_EQ(40320, Factorial(8));
  21.     }
  22.     // Tests IsPrime() 测试是否是素数
  23.     TEST(IsPrimeTest, Negative) {
  24.         //预测 true or false
  25.         EXPECT_FALSE(IsPrime(-1));
  26.         EXPECT_FALSE(IsPrime(-2));
  27.         EXPECT_FALSE(IsPrime(INT_MIN));
  28.     }
  29.     TEST(IsPrimeTest, Trivial) {
  30.         EXPECT_FALSE(IsPrime(0));
  31.         EXPECT_FALSE(IsPrime(1));
  32.         EXPECT_TRUE(IsPrime(2));
  33.         EXPECT_TRUE(IsPrime(3));
  34.     }
  35.     TEST(IsPrimeTest, Positive) {
  36.         EXPECT_FALSE(IsPrime(4));
  37.         EXPECT_TRUE(IsPrime(5));
  38.         EXPECT_FALSE(IsPrime(6));
  39.         EXPECT_TRUE(IsPrime(23));
  40.     }
  41. }  // namespace
复制代码

进行测试

不带main

 实现测试的main函数,当然我们也可以不消写main函数,那就需要连接gtest_main.a这个库(编译时添加-lgtest_main选项)。好比如许子编译:
g++ sample1.cc sample1_unittest.cc -lgtest -std=c++14 -lgtest_main -lpthread -o test1
实行效果:




带main


固定写法,将main补充在最背面
  1. int main(int argc, char** argv)
  2. {
  3.     testing::InitGoogleTest(&argc,argv);
  4.     return RUN_ALL_TESTS();
  5. }
复制代码
完备测试.cc:
  1. #include <limits.h>//包含最大最小数
  2. #include "sample1.h"
  3. #include "gtest/gtest.h"//gtest头文件
  4. namespace {
  5.     TEST(FactorialTest, Negative) {
  6.         // 测试名叫Negative,属于FactorialTest测试套
  7.         // 测试用例
  8.         EXPECT_EQ(1, Factorial(-5));//断言相等
  9.         EXPECT_EQ(1, Factorial(-1));
  10.         //前后顺序不影响
  11.         EXPECT_GT(Factorial(-10), 0);//断言大于
  12.     }
  13.     TEST(FactorialTest, Zero) {
  14.         EXPECT_EQ(1, Factorial(0));
  15.     }
  16.     TEST(FactorialTest, Positive) {
  17.         EXPECT_EQ(1, Factorial(1));
  18.         EXPECT_EQ(2, Factorial(2));
  19.         EXPECT_EQ(6, Factorial(3));
  20.         EXPECT_EQ(40320, Factorial(8));
  21.     }
  22.     // Tests IsPrime() 测试是否是素数
  23.     TEST(IsPrimeTest, Negative) {
  24.         //预测 true or false
  25.         EXPECT_FALSE(IsPrime(-1));
  26.         EXPECT_FALSE(IsPrime(-2));
  27.         EXPECT_FALSE(IsPrime(INT_MIN));
  28.     }
  29.     TEST(IsPrimeTest, Trivial) {
  30.         EXPECT_FALSE(IsPrime(0));
  31.         EXPECT_FALSE(IsPrime(1));
  32.         EXPECT_TRUE(IsPrime(2));
  33.         EXPECT_TRUE(IsPrime(3));
  34.     }
  35.     TEST(IsPrimeTest, Positive) {
  36.         EXPECT_FALSE(IsPrime(4));
  37.         EXPECT_TRUE(IsPrime(5));
  38.         EXPECT_FALSE(IsPrime(6));
  39.         EXPECT_TRUE(IsPrime(23));
  40.     }
  41. }  // namespaceint main(int argc, char** argv)
  42. {
  43.     testing::InitGoogleTest(&argc,argv);
  44.     return RUN_ALL_TESTS();
  45. }
复制代码
编译时去掉-lgtest_main选项:


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

圆咕噜咕噜

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表