无法打开源文件 gtest/gtest.h
Cannot open source file gtest/gtest.h
我在 visual studio 2015 年安装了 Google Test Adapter,并期待它自动设置必要库的包含路径 link。但似乎还缺少其他一些步骤,因为我收到 "cannot include gtest/gtest.h" 错误。如果我必须在安装扩展后手动完成所有这些,那么这个扩展有什么意义呢?还是我遗漏了什么?
查看Google Test Adapter上的功能描述:
"Google Test Adapter (GTA) is a Visual Studio extension providing test discovery and execution of C++ tests written with the Google Test framework."
Google 测试 (gtest) 测试被编译为可执行文件,支持不同的选项来过滤要执行的测试用例和 select 输出格式(参见 "Writing the main() Function") . Google 测试适配器可用于执行其中一个可执行文件。
因此您需要下载gtest框架并正确配置solution/the项目的包含路径,将测试编译为可执行文件并使用Google测试适配器来发现和执行测试. (要配置 Google 测试适配器,请转到调试->选项->Google 测试适配器。)
我在 visual studio 2015 年安装了 Google Test Adapter,并期待它自动设置必要库的包含路径 link。但似乎还缺少其他一些步骤,因为我收到 "cannot include gtest/gtest.h" 错误。如果我必须在安装扩展后手动完成所有这些,那么这个扩展有什么意义呢?还是我遗漏了什么?
查看Google Test Adapter上的功能描述:
"Google Test Adapter (GTA) is a Visual Studio extension providing test discovery and execution of C++ tests written with the Google Test framework."
Google 测试 (gtest) 测试被编译为可执行文件,支持不同的选项来过滤要执行的测试用例和 select 输出格式(参见 "Writing the main() Function") . Google 测试适配器可用于执行其中一个可执行文件。
因此您需要下载gtest框架并正确配置solution/the项目的包含路径,将测试编译为可执行文件并使用Google测试适配器来发现和执行测试. (要配置 Google 测试适配器,请转到调试->选项->Google 测试适配器。)