本文介绍了通过相对路径c ++ cmake guest查找用于单元测试的外部测试文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
访问外部测试文件以进行c ++项目的单元测试的正确方法是什么?我正在使用CMake和Gtest。
What would be the proper way to access an external test file for the unit test of a c++ project? I am using CMake and Gtest.
这是目录结构的示例。
Project
-src
-test (unit tests here)
-test-data (data file here)
谢谢!
推荐答案
将文件名传递给gtest参数:
Pass the file name to gtest arguments:
add_executable(foo ...)
enable_testing()
add_test(FooTest foo "${CMAKE_CURRENT_LIST_DIR}/data/input.file")
在gtest解析输入后获取参数:
get the parameter after gtest parse input:
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
assert(argc == 2); // gtest leaved unparsed arguments for you
并将其保存到某些全局*:
and save it to some global *:
file_name = argv[1];
return RUN_ALL_TESTS();
- How to pass parameters to the gtest
这篇关于通过相对路径c ++ cmake guest查找用于单元测试的外部测试文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!