diff options
-rw-r--r-- | test/app.hpp | 1 | ||||
-rw-r--r-- | test/main.cpp | 1 | ||||
-rw-r--r-- | test/wall-atlas.cpp | 16 |
3 files changed, 18 insertions, 0 deletions
diff --git a/test/app.hpp b/test/app.hpp index 630acf02..e75c6d32 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -34,6 +34,7 @@ struct test_app final : private FM_APPLICATION static void test_path_search(); static void test_hash(); static void test_path_search_node_pool(); + static void test_wall_atlas(); static void zzz_test_misc(); }; } // namespace floormat diff --git a/test/main.cpp b/test/main.cpp index c6ef7557..9176b47a 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -34,6 +34,7 @@ int test_app::exec() test_math(); test_hash(); test_path_search_node_pool(); + test_wall_atlas(); zzz_test_misc(); return 0; diff --git a/test/wall-atlas.cpp b/test/wall-atlas.cpp new file mode 100644 index 00000000..61f252b7 --- /dev/null +++ b/test/wall-atlas.cpp @@ -0,0 +1,16 @@ +#include "test/app.hpp" +#include "src/wall-atlas.hpp" + +namespace floormat { + +namespace { + + + +} // namespace + +void test_app::test_wall_atlas() +{ +} + +} // namespace floormat |