summaryrefslogtreecommitdiffhomepage
path: root/editor/tests-private.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/tests-private.hpp')
-rw-r--r--editor/tests-private.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/tests-private.hpp b/editor/tests-private.hpp
index cd254e85..a6f20e92 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, pathfinding, COUNT,
};
struct tests_data final : tests_data_
@@ -44,6 +44,7 @@ struct tests_data final : tests_data_
static Pointer<base_test> make_test_path();
static Pointer<base_test> make_test_raycast();
static Pointer<base_test> make_test_region();
+ static Pointer<base_test> make_test_pathfinding();
Pointer<base_test> current_test;
Test current_index = Test::none;
@@ -60,6 +61,7 @@ struct tests_data final : tests_data_
{ "Path"_s, Test::path, make_test_path, },
{ "Raycasting"_s, Test::raycast, make_test_raycast },
{ "Region extraction"_s, Test::region, make_test_region },
+ { "Pathfinding"_s, Test::pathfinding, make_test_pathfinding },
};
};