場景:對qt程式測試
說明:google test環境搭建,看我部落格 google test 的使用,這裡不再重複說明。
實現步驟:
1 新增qt庫目錄,在qt的安裝目錄,我安裝的是在盤c下
專案屬性 --- c/c++ --- 常規 --- 附加包含目錄 新增路徑:
c:\qt\include
c:\qt\include\qt
c:\qt\include\qtcore
c:\qt\include\qtgui
2 專案屬性 --- 鏈結器 --- 鏈結庫依賴項 : 新增qt的 lib目錄
c:\qt\lib
qtmaind.lib
qtguid4.lib
qtcored4.lib
4 測試**:
#include #include "gtest\gtest.h"
#include #include using namespace std;
int main(int argc,char *argv)
test(test_main,testqstring)
執行結果:
Google Test 使用筆記
編譯gtest 使用vs2015開啟gtest.sln 我的是在目錄googletest master googletest msvc 2010下 在debug release兩個模式下都編譯一下。編譯後,在msvc gtest 下有debug release兩個資料夾。編譯器報 不是有效的win3...
googleTest安裝和使用
環境 windows7 vs2013 一 安裝 2.解壓googletest,目錄googletest msvc 下是visual studio的工程檔案,使用vs開啟,分別用debug和release模式編譯 3.編譯完成後進入googletest msvc gtest 資料夾下,有debug和r...
Google Test單元測試使用
google開源了很多實用的模組,比如google gtest google gmock google glog google gflags google ctemplate google sparsehash protobuf perftools,gtest是c 的測試模組,提供豐富的測試方法 軟...