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!")); +}