summaryrefslogtreecommitdiffhomepage
path: root/editor/tests-private.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-22 19:42:15 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-22 19:43:03 +0100
commit9dc4e308d01178825d4e98cf01b46cd9fb8a04e1 (patch)
treefb8c78c08c65d4c974e033bed5b3425aea69f0f3 /editor/tests-private.hpp
parent3b8fe52e0f801978f9e0b1a7174155c8686c61bd (diff)
editor: more region stub
Diffstat (limited to 'editor/tests-private.hpp')
-rw-r--r--editor/tests-private.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/tests-private.hpp b/editor/tests-private.hpp
index 5e44879c..4a9cf07a 100644
--- a/editor/tests-private.hpp
+++ b/editor/tests-private.hpp
@@ -31,7 +31,7 @@ protected:
};
enum class Test : uint32_t {
- none, path, raycast, /*region,*/ COUNT,
+ none, path, raycast, region, COUNT,
};
struct tests_data final : tests_data_
@@ -59,7 +59,7 @@ struct tests_data final : tests_data_
{ "None"_s, Test::none, &tests_data::make_test_none, },
{ "Path"_s, Test::path, &tests_data::make_test_path, },
{ "Raycasting"_s, Test::raycast, &tests_data::make_test_raycast },
- //{ "Region extraction"_s, Test::region, &tests_data::make_test_region },
+ { "Region extraction"_s, Test::region, &tests_data::make_test_region },
};
};