From 0893b221bc743df21c54f093421bc67af3122d9f Mon Sep 17 00:00:00 2001 From: map-per Date: Tue, 9 Dec 2025 15:30:43 +0100 Subject: [PATCH] Add unit test file Signed-off-by: map-per --- libs/editor/editor_tests/CMakeLists.txt | 1 + libs/editor/editor_tests/feature_type_to_osm_test.cpp | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 libs/editor/editor_tests/feature_type_to_osm_test.cpp diff --git a/libs/editor/editor_tests/CMakeLists.txt b/libs/editor/editor_tests/CMakeLists.txt index e2909c900..0675f944a 100644 --- a/libs/editor/editor_tests/CMakeLists.txt +++ b/libs/editor/editor_tests/CMakeLists.txt @@ -5,6 +5,7 @@ set(SRC editor_config_test.cpp editor_notes_test.cpp feature_matcher_test.cpp + feature_type_to_osm_test.cpp match_by_geometry_test.cpp new_feature_categories_test.cpp opening_hours_ui_test.cpp diff --git a/libs/editor/editor_tests/feature_type_to_osm_test.cpp b/libs/editor/editor_tests/feature_type_to_osm_test.cpp new file mode 100644 index 000000000..8e622d53b --- /dev/null +++ b/libs/editor/editor_tests/feature_type_to_osm_test.cpp @@ -0,0 +1,8 @@ +#include "testing/testing.hpp" + +#include "editor/feature_type_to_osm.hpp" + +UNIT_TEST(testIfTestRuns) +{ + LOG(LINFO, ("New Test ran!")); +}