summaryrefslogtreecommitdiffhomepage
path: root/test/path-search.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-09-10 05:46:05 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-09-11 14:20:10 +0200
commit1af31374db91b0fd6091b27d4c199edaee989612 (patch)
tree04173711baf1440641e8a6a51dd2dc22dc866200 /test/path-search.cpp
parenta1ffaa0678cfe1a45dd3bf0fe9b08d0523a757e0 (diff)
src: wip A* search impl
Diffstat (limited to 'test/path-search.cpp')
-rw-r--r--test/path-search.cpp21
1 files changed, 21 insertions, 0 deletions
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