diff options
author | Carbenium <carbenium@outlook.com> | 2020-07-22 20:27:54 +0200 |
---|---|---|
committer | Peter Keresztes Schmidt <carbenium@outlook.com> | 2020-07-24 12:00:54 +0200 |
commit | 6a28ee7b2a4269aa7e43265d1cd0067537e3e883 (patch) | |
tree | 0318b45951240f81cdf9c3c36e493e16d75f81be /dep | |
parent | 3c0ac7302f902d1811d2c215217a3d701f8b5b19 (diff) |
dep: Add catch2 unit test framework and wire it up
To enable the test suite, make sure to configure CMake with -DBUILD_TESTING=1 , since it is disabled by default. The catch2 dependency will be downloaded during configure time.
Also add a new target "tests-common", which includes unit tests for the "common" project. To finally run the tests use the "test" target.
CircleCI: Run unit tests
Diffstat (limited to 'dep')
-rw-r--r-- | dep/CMakeLists.txt | 9 | ||||
-rw-r--r-- | dep/PackageList.txt | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index 73192a57fdd..9c1b5cd9b97 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -35,3 +35,12 @@ if(TOOLS) add_subdirectory(bzip2) add_subdirectory(libmpq) endif() + +if(BUILD_TESTING) + include(FetchContent) + FetchContent_Declare(Catch2 + GIT_REPOSITORY https://github.com/catchorg/Catch2.git + GIT_TAG v2.13.0 + GIT_SHALLOW 1) + FetchContent_MakeAvailable(Catch2) +endif() diff --git a/dep/PackageList.txt b/dep/PackageList.txt index ebba25cf3ad..2647a039365 100644 --- a/dep/PackageList.txt +++ b/dep/PackageList.txt @@ -68,3 +68,7 @@ recastnavigation (Recast is state of the art navigation mesh construction toolse argon2 https://github.com/P-H-C/phc-winner-argon2 Version: 62358ba + +catch2 + https://github.com/catchorg/Catch2 + Version: v2.13.0
\ No newline at end of file |