Running main() from gtest_main.cc
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from MyMathTest
[ RUN ] MyMathTest.Positive
[ OK ] MyMathTest.Positive
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran.
[ PASSED ] 1 test.
请按任意键继续. . .
8如果编译出现的错误,fatal error C1083: Cannot open include file: \' Gtest.h \': No such file or directory
解决方案:
a,工具--选项--VC++目录--显示以下内容的目录(包含文件)--(新建一行,选择自己include文件所在的目录即可)E:\程序安装包\google test\gtest-1.2.1\include
b,工具--选项--VC++目录--显示以下内容的目录(包库文件)--(新建一行,选择自己库文件所在的目录)E:\程序安装包\google test\gtest-1.2.1\msvc\Release
问题就解决了,出现了第七步的结果。如果第8步的设置在新建项目时设置好了后面就不会报错了。