diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-09-10 05:46:05 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-09-11 14:20:10 +0200 |
commit | 1af31374db91b0fd6091b27d4c199edaee989612 (patch) | |
tree | 04173711baf1440641e8a6a51dd2dc22dc866200 /test | |
parent | a1ffaa0678cfe1a45dd3bf0fe9b08d0523a757e0 (diff) |
src: wip A* search impl
Diffstat (limited to 'test')
-rw-r--r-- | test/app.hpp | 1 | ||||
-rw-r--r-- | test/main.cpp | 1 | ||||
-rw-r--r-- | test/path-search.cpp | 21 |
3 files changed, 23 insertions, 0 deletions
diff --git a/test/app.hpp b/test/app.hpp index ad9f41e7..04ed55b7 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -34,6 +34,7 @@ struct test_app final : private FM_APPLICATION static void test_entity(); static void test_loader(); static void test_bitmask(); + static void test_path_search(); static void zzz_test_misc(); }; } // namespace floormat diff --git a/test/main.cpp b/test/main.cpp index 86e6d383..fe07ce79 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -29,6 +29,7 @@ int test_app::exec() test_bitmask(); test_serializer_1(); test_serializer_2(); + test_path_search(); zzz_test_misc(); return 0; diff --git a/test/path-search.cpp b/test/path-search.cpp new file mode 100644 index 00000000..7bbd04c0 --- /dev/null +++ b/test/path-search.cpp @@ -0,0 +1,21 @@ +#include "app.hpp" +#include "src/path-search.hpp" +#include "compat/assert.hpp" + +namespace floormat { + +namespace { + +void test_bbox() +{ + +} + +} // namespace + +void test_app::test_path_search() +{ + test_bbox(); +} + +} // namespace floormat |