如何使用 Catch2 和 CMake 添加单独的测试文件?

问题描述

documentation 中,他们只编译一个文件 test.cpp,大概包含所有测试。我想将我的单个测试与包含 #define CATCH_CONfig_MAIN文件(例如 so)分开。

如果我有一个包含 test.cpp文件 #define CATCH_CONfig_MAIN一个单独的测试文件 simple_test.cpp,我已经设法生成一个包含 simple_test.cpp 中的测试的可执行文件方式:

find_package(Catch2 required)

add_executable(tests test.cpp simple_test.cpp)
target_link_libraries(tests Catch2::Catch2)

include(CTest)
include(Catch)
catch_discover_tests(tests)

但是,这是一种可以接受的生成可执行文件的方式吗?从不同的教程来看,如果我有更多的测试,我应该能够制作一个测试源库并将它们链接test.cpp生成可执行文件

find_package(Catch2 required)

add_library(test_sources simple_test.cpp another_test.cpp)
target_link_libraries(test_sources Catch2::Catch2)

add_executable(tests test.cpp)
target_link_libraries(tests test_sources)
target_link_libraries(tests Catch2::Catch2)

include(CTest)
include(Catch)
catch_discover_tests(tests)

但是当我尝试这个时,我收到了一个 CMake 警告 Test executable ... contains no tests!

总而言之,我应该制作一个测试库吗?如果是这样,我怎样才能让它包含我的测试。否则,将我的新 test.cpp 文件添加add_executable 函数是否正确?

解决方法

如何使用 Catch2 和 CMake 添加单独的测试文件?

使用对象库或使用 --Wl,--whole-archive。链接器在链接时从静态库中删除未引用的符号,因此测试不在最终可执行文件中。

你能举个例子 CMakeLists.txt 吗?

喜欢

find_package(Catch2 REQUIRED)

add_library(test_sources OBJECT simple_test.cpp another_test.cpp)
target_link_libraries(test_sources Catch2::Catch2)

add_executable(tests test.cpp)
target_link_libraries(tests test_sources)
target_link_libraries(tests Catch2::Catch2)

include(CTest)
include(Catch)
catch_discover_tests(tests)

find_package(Catch2 REQUIRED)

add_library(test_sources simple_test.cpp another_test.cpp)
target_link_libraries(test_sources Catch2::Catch2)

add_executable(tests test.cpp)
target_link_libraries(tests -Wl,--whole-archive test_sources -Wl,--no-whole-archive)
target_link_libraries(tests Catch2::Catch2)

include(CTest)
include(Catch)
catch_discover_tests(tests)