Zoeken…


Basic Test Suite

# the usual boilerplate setup
cmake_minimum_required(2.8)
project(my_test_project
        LANGUAGES CXX)

# tell CMake to use CTest extension
enable_testing()

# create an executable, which instantiates a runner from
# GoogleTest, Boost.Test, QtTest or whatever framework you use
add_executable(my_test
               test_main.cpp)

# depending on the framework, you need to link to it
target_link_libraries(my_test
                      gtest_main)

# now register the executable with CTest
add_test(NAME my_test COMMAND my_test)

De macro enable_testing() doet veel magie. Eerst en vooral, het creëert een ingebouwde doelwit test (voor GNU make; RUN_TESTS voor VS), die, wanneer run, voert CTest.

De aanroep van add_test() registreert eindelijk een willekeurig uitvoerbaar bestand met CTest , dus het uitvoerbare bestand wordt uitgevoerd wanneer we het test oproepen.

Bouw nu het project zoals gewoonlijk en voer uiteindelijk het testdoel uit

GNU maken Visuele studio
make test cmake --build . --target RUN_TESTS


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow