From 4f88b6ba253ddb34fdc5049ab3044516df73257c Mon Sep 17 00:00:00 2001 From: ThomasAvans Date: Wed, 10 Apr 2024 16:42:55 +0200 Subject: Setup the googletest testing framework --- test/CMakeLists.txt | 23 +++++++++++++++++++++++ test/ExampleTest.cpp | 7 +++++++ test/lib/googletest | 1 + 3 files changed, 31 insertions(+) create mode 100644 test/CMakeLists.txt create mode 100644 test/ExampleTest.cpp create mode 160000 test/lib/googletest (limited to 'test') diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt new file mode 100644 index 0000000..a0bd099 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,23 @@ +cmake_minimum_required(VERSION 3.29) + +project(puzzlebox_test C CXX ASM) + +set(CMAKE_C_STANDARD 11) +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_EXPORT_COMPILE_COMMANDS 1) + +add_executable(tests + ExampleTest.cpp +) + +enable_testing() + +add_subdirectory(lib/googletest) + +target_include_directories(tests PRIVATE ${CMAKE_CURRENT_LIST_DIR}) +target_link_libraries(tests PRIVATE gtest_main) + +add_test( + NAME tests + COMMAND tests +) \ No newline at end of file diff --git a/test/ExampleTest.cpp b/test/ExampleTest.cpp new file mode 100644 index 0000000..a3909f5 --- /dev/null +++ b/test/ExampleTest.cpp @@ -0,0 +1,7 @@ +#include + +class ExampleTest : public testing::Test { +protected: +}; + +TEST_F(ExampleTest, Test) { EXPECT_EQ(5, 5); } \ No newline at end of file diff --git a/test/lib/googletest b/test/lib/googletest new file mode 160000 index 0000000..b1a777f --- /dev/null +++ b/test/lib/googletest @@ -0,0 +1 @@ +Subproject commit b1a777f31913f8a047f43b2a5f823e736e7f5082 -- cgit v1.2.3