From 7c8aac19374013e7366b5afbf5d85fe151de3669 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 5 Feb 2023 01:18:18 +0100 Subject: Added simple test for HitPoints This should have been added earlier. The test itself is questionable and overall very optimistic about the edge cases. The intent of this commit is purely set up of the testing framework. --- sim/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sim/CMakeLists.txt') diff --git a/sim/CMakeLists.txt b/sim/CMakeLists.txt index ef80c77..4ddd15d 100644 --- a/sim/CMakeLists.txt +++ b/sim/CMakeLists.txt @@ -22,3 +22,13 @@ target_link_libraries( PRIVATE stats PUBLIC universe ) +add_executable( + ${PROJECT_NAME}_test + tests/HitPoints.cpp +) +target_link_libraries( + ${PROJECT_NAME}_test + PRIVATE GTest::gtest_main + PRIVATE ${PROJECT_NAME} +) +gtest_discover_tests(${PROJECT_NAME}_test) -- cgit v1.1