diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/.gitignore | 1 | ||||
-rw-r--r-- | test/CMakeLists.txt | 23 | ||||
-rw-r--r-- | test/ExampleTest.cpp | 7 | ||||
m--------- | test/lib/googletest | 0 |
4 files changed, 31 insertions, 0 deletions
diff --git a/test/.gitignore b/test/.gitignore new file mode 100644 index 0000000..c795b05 --- /dev/null +++ b/test/.gitignore @@ -0,0 +1 @@ +build
\ No newline at end of file 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 <gtest/gtest.h> + +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 +Subproject 5197b1a8e6a1ef9f214f4aa537b0be17cbf9194 |