diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-06 12:05:57 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-06 21:40:39 +0100 |
commit | e66261158e090141d853632776f909d00a4743c9 (patch) | |
tree | 48dce7103b97470447f971e58b648acea4f00cf0 /test/app.hpp | |
parent | ea39f5aa7f125ac921b893d0c555bb7988b6f341 (diff) |
test: add timing information in verbose mode
Diffstat (limited to 'test/app.hpp')
-rw-r--r-- | test/app.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/app.hpp b/test/app.hpp index 78794cd3..f2a169fb 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -22,24 +22,24 @@ struct test_app final : private FM_APPLICATION int exec() override; static void test_coords(); - static void test_json(); static void test_tile_iter(); static void test_magnum_math(); static void test_math(); - static void test_serializer_1(); - static void test_serializer_2(); + static void test_intrusive_ptr(); static void test_entity(); - static void test_loader(); + static void test_serializer1(); static void test_bitmask(); - static void test_path_search(); - static void test_dijkstra(); static void test_hash(); + static void test_json(); + static void test_dijkstra(); + static void test_serializer2(); + static void test_loader(); + static void test_path_search(); static void test_scenery(); - static void test_path_search_node_pool(); + static void test_path_search_pool(); static void test_wall_atlas(); static void test_wall_atlas2(); static void test_raycast(); - static void test_intrusive_ptr(); - static void zzz_test_misc(); + static void test_zzz_misc(); }; } // namespace floormat |