diff --git a/CMakeLists.txt b/CMakeLists.txt index 51b6e26..35a08c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,8 +22,8 @@ find_package(GTest REQUIRED) enable_testing() add_executable(wavefront_tests - tests/trim_test.cpp - tests/settings_test.cpp + tests/unit/trim_test.cpp + tests/unit/settings_test.cpp ${APP_SOURCES} ) target_link_libraries(wavefront_tests PRIVATE diff --git a/tests/settings_test.cpp b/tests/unit/settings_test.cpp similarity index 99% rename from tests/settings_test.cpp rename to tests/unit/settings_test.cpp index 163467f..620db84 100644 --- a/tests/settings_test.cpp +++ b/tests/unit/settings_test.cpp @@ -184,4 +184,3 @@ namespace { EXPECT_EQ(output_contents, token); } } - diff --git a/tests/trim_test.cpp b/tests/unit/trim_test.cpp similarity index 100% rename from tests/trim_test.cpp rename to tests/unit/trim_test.cpp