0


linux下的gtest单元测试,使用示例

首先,介绍下gtest:

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

然后,动手!

首先将gtest下载到本地ubuntu,执行命令:git clone https://github.com/google/googletest.git

下载完成之后会有一个名外googletest的文件夹

然后进入googletest文件夹,输入命令: cd googletest

然后在输入:cmake

继续输入:make

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

如下图:

最后我们再执行命令:sudo make install

执行此命令后,GoogleTest 会被安装到 /usr/local 或类似的系统目录中。安装后的 GoogleTest 会被系统识别,你只需要使用常规的 g++ 命令来链接库文件,无需手动指定库路径和头文件路径。

到此测试工具配置完成

接下来看看测试案例:

sample1.c文件如下:

(将要被测测试的函数就是该文件下的Factorial函数和IsPrime函数)

  1. #include "sample1.h"
  2. // Returns n! (the factorial of n). For negative n, n! is defined to be 1.
  3. //计算n的阶乘
  4. int Factorial(int n) {
  5. int result = 1;
  6. for (int i = 1; i <= n; i++) {
  7. result *= i;
  8. }
  9. return result;
  10. }
  11. // Returns true if n is a prime number.
  12. //判断n是否为质数
  13. bool IsPrime(int n) {
  14. // Trivial case 1: small numbers
  15. if (n <= 1) return false;
  16. // Trivial case 2: even numbers
  17. if (n % 2 == 0) return n == 2;
  18. // Now, we have that n is odd and n >= 3.
  19. // Try to divide n by every odd number i, starting from 3
  20. for (int i = 3; ; i += 2) {
  21. // We only have to try i up to the square root of n
  22. if (i > n/i) break;
  23. // Now, we have i <= n/i < n.
  24. // If n is divisible by i, n is not prime.
  25. if (n % i == 0) return false;
  26. }
  27. // n has no integer factor in the range (1, n), and thus is prime.
  28. return true;
  29. }

sample1.h文件内容如下:

主要是对Factorial函数和IsPrime函数的声明

  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 if n is a prime number.
  6. bool IsPrime(int n);
  7. #endif

uniontest1.c 测试函数如下:

  1. #include <limits.h>
  2. #include "sample1.h"
  3. #include "gtest/gtest.h"
  4. namespace {
  5. TEST(FactorialTest, Negative) {
  6. // This test is named "Negative", and belongs to the "FactorialTest"
  7. // test case.
  8. EXPECT_EQ(1, Factorial(-5));
  9. EXPECT_EQ(1, Factorial(-1));
  10. EXPECT_GT(Factorial(-10), 0);
  11. }
  12. TEST(FactorialTest, Zero) {
  13. EXPECT_EQ(1, Factorial(0));
  14. }
  15. TEST(FactorialTest, Positive) {
  16. EXPECT_EQ(1, Factorial(1));
  17. EXPECT_EQ(2, Factorial(2));
  18. EXPECT_EQ(6, Factorial(3));
  19. EXPECT_EQ(40320, Factorial(8));
  20. }
  21. // Tests IsPrime()
  22. TEST(IsPrimeTest, Negative) {
  23. EXPECT_FALSE(IsPrime(-1));
  24. EXPECT_FALSE(IsPrime(-2));
  25. EXPECT_FALSE(IsPrime(INT_MIN));
  26. }
  27. TEST(IsPrimeTest, Trivial) {
  28. EXPECT_FALSE(IsPrime(0));
  29. EXPECT_FALSE(IsPrime(1));
  30. EXPECT_TRUE(IsPrime(2));
  31. EXPECT_TRUE(IsPrime(3));
  32. }
  33. TEST(IsPrimeTest, Positive) {
  34. EXPECT_FALSE(IsPrime(4));
  35. EXPECT_TRUE(IsPrime(5));
  36. EXPECT_FALSE(IsPrime(6));
  37. EXPECT_TRUE(IsPrime(23));
  38. }
  39. } // namespace

将这三个文件放在同一个文件夹里,我把它放在了demo文件夹下,如下图:

然后运行测试函数,时输入命令:

g++ sample1.c unitest1.c -lgtest -lgtest_main -lpthread -std=c++14 -o test1

命令含义:

gcc:这是 GNU C++ 编译器,用于编译 C++ 源代码。

**

  1. sample1.c unitest1.c

**:这两个是源代码文件,将会被编译。

**

  1. -lgtest

**:这个选项告诉编译器链接 GoogleTest 库(

  1. libgtest.a

)。这是 Google 提供的一个用于单元测试的框架。

**

  1. -lgtest_main

**:这个选项告诉编译器链接

  1. gtest_main

库,它提供了一个默认的

  1. main()

函数,处理运行 GoogleTest 测试的初始化工作。

**

  1. -lpthread

**:这个选项告诉编译器链接 POSIX 线程库(

  1. libpthread.a

)。GoogleTest 可能会用到多线程功能,因此需要链接此库。

**

  1. -std=c++14

**:这个选项指定 C++ 编译标准为 C++14。GoogleTest 需要 C++14 或更高版本的标准,因此你必须确保编译时使用合适的标准。

**

  1. -o test1

**:这个选项指定编译结果生成的可执行文件名为

  1. test1

总结起来,这行命令的目的是编译并链接

  1. sample1.c

  1. unitest1.c

两个源文件,链接 GoogleTest、线程库,并使用 C++14 标准,最终生成名为

  1. test1

的可执行文件。

命令执行成功后会生成 test1可执行程序

然后,运行test1程序,查看测试结果,输入命令:./test1

结果如下:

结果显示所有测试用例都通过了。

标签: 单元测试 c++ linux

本文转载自: https://blog.csdn.net/weixin_63076889/article/details/143727324
版权归原作者 御音strawpp 所有, 如有侵权,请联系我们删除。

“linux下的gtest单元测试,使用示例”的评论:

还没有评论