IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> gtest单元测试工具 -> 正文阅读

[开发测试]gtest单元测试工具

环境搭建

gtest下载地址: https://github.com/google/googletest
下载方法是:git clone https://github.com/google/googletest.git

安装方法是:

$ 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。

不需要自己写mian

g++ sample1.cc sample1_unittest.cc -lgtest -std=c++11 -lgtest_main -lpthread -o test1
#include "sample1.h"

// Returns n! (the factorial of n).  For negative n, n! is defined to be 1.
int Factorial(int n) {
  int result = 1;
  for (int i = 1; i <= n; i++) {
    result *= i;
  }

  return result;
}

// Returns true iff n is a prime number.
bool IsPrime(int n) {
  // Trivial case 1: small numbers
  if (n <= 1) return false;

  // Trivial case 2: even numbers
  if (n % 2 == 0) return n == 2;

  // Now, we have that n is odd and n >= 3.

  // Try to divide n by every odd number i, starting from 3
  for (int i = 3; ; i += 2) {
    // We only have to try i up to the square root of n
    if (i > n/i) break;

    // Now, we have i <= n/i < n.
    // If n is divisible by i, n is not prime.
    if (n % i == 0) return false;
  }

  // n has no integer factor in the range (1, n), and thus is prime.
  return true;
}
//这两个函数定义在sample1.cc文件里,函数申明在sample1.h里:
#ifndef GTEST_SAMPLES_SAMPLE1_H_
#define GTEST_SAMPLES_SAMPLE1_H_

// Returns n! (the factorial of n).  For negative n, n! is defined to be 1.
int Factorial(int n);

// Returns true iff n is a prime number.
bool IsPrime(int n);

#endif 

自写测试用例

#include <limits.h>
#include "sample1.h"
#include "gtest/gtest.h"
namespace {

	TEST(FactorialTest, Negative) {//测试对于复数得场景
	    // This test is named "Negative", and belongs to the "FactorialTest"
	    // test case.
	    EXPECT_EQ(1, Factorial(-5));//断言测试 参数1 断言返回是多少 参数2函数并带参数
	    EXPECT_EQ(1, Factorial(-1));
	    EXPECT_GT(Factorial(-10), 0);
	}
	
	TEST(FactorialTest, Zero) {//测试对正数得场景
	    EXPECT_EQ(1, Factorial(0));
	}
	
	TEST(FactorialTest, Positive) {
	    EXPECT_EQ(1, Factorial(1));
	    EXPECT_EQ(2, Factorial(2));
	    EXPECT_EQ(6, Factorial(3));
	    EXPECT_EQ(40320, Factorial(8));
	}
	
	// Tests IsPrime()
	TEST(IsPrimeTest, Negative) {
	  EXPECT_FALSE(IsPrime(-1));
	  EXPECT_FALSE(IsPrime(-2));
	  EXPECT_FALSE(IsPrime(INT_MIN));
	}
	
	TEST(IsPrimeTest, Trivial) {
	  EXPECT_FALSE(IsPrime(0));//返回得是假
	  EXPECT_FALSE(IsPrime(1));
	  EXPECT_TRUE(IsPrime(2));//返回得是真
	  EXPECT_TRUE(IsPrime(3));
	}
	
	TEST(IsPrimeTest, Positive) {
	  EXPECT_FALSE(IsPrime(4));
	  EXPECT_TRUE(IsPrime(5));
	  EXPECT_FALSE(IsPrime(6));
	  EXPECT_TRUE(IsPrime(23));
	}
}  // namespace
TEST是gtest的测试宏,我们的测试用例必须按照这样格式写,
isPrimeTest是测试套的名字,一个测试套下可以有多个测试用例,
那么Positive、Trivial就是我们测试用例的名称,EXPECT_EQ、EXPECT_FALSE
和EXPECT_TRUE等等,都是gtest提供的测试断言,比如 EXPECT_EQ(1, Factorial(1));
就是表示Factorial(1)1是不是相等的,如果是则表示EXPECT_EQ会返回成功,否则失败
,也即我们测试用例会失败或者成功。
  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2022-04-15 00:30:46  更:2022-04-15 00:32:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 0:10:43-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码