diff options
-rw-r--r-- | test/app.hpp | 1 | ||||
-rw-r--r-- | test/main.cpp | 1 | ||||
-rw-r--r-- | test/zzz_test_misc.cpp | 17 |
3 files changed, 19 insertions, 0 deletions
diff --git a/test/app.hpp b/test/app.hpp index 1fed6c0c..ad9f41e7 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -34,5 +34,6 @@ struct test_app final : private FM_APPLICATION static void test_entity(); static void test_loader(); static void test_bitmask(); + static void zzz_test_misc(); }; } // namespace floormat diff --git a/test/main.cpp b/test/main.cpp index 6add1844..86e6d383 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(); + zzz_test_misc(); return 0; } diff --git a/test/zzz_test_misc.cpp b/test/zzz_test_misc.cpp new file mode 100644 index 00000000..66b3d8fa --- /dev/null +++ b/test/zzz_test_misc.cpp @@ -0,0 +1,17 @@ +#include "app.hpp" + +namespace floormat { + +namespace { + +// tests go here +void test_foo() {} + +} // namespace + +void test_app::zzz_test_misc() +{ + test_foo(); +} + +} // namespace floormat |