將Google C 測試框架(gtest) 整合到Visual Studio 2005
設定Google C 測試框架(gtest) 以與Visual Studio 一起與Visual Studio 一起使用2005 年可能是一項艱鉅的任務,但可以透過逐步的方法來完成。
取得並建立 gtest
建立並設定您的測試專案
在專案屬性中:
測試設定
在測試項目中的main()函數中,包含必要的標頭並添加簡單的測試案例:
#include "stdafx.h" #include <iostream> #include "gtest/gtest.h" TEST(sample_test_case, sample_test) { EXPECT_EQ(1, 1); } int main(int argc, char** argv) { testing::InitGoogleTest(&argc, argv); RUN_ALL_TESTS(); std::getchar(); // keep console window open until Return keystroke }
如果一切正常,測試結果應顯示在控制台視窗中。
以上是如何將 Google C 測試框架 (gtest) 整合到 Visual Studio 2005 中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!