summaryrefslogtreecommitdiffhomepage
path: root/test/app.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/app.hpp')
-rw-r--r--test/app.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/app.hpp b/test/app.hpp
index 26a0e41a..89753ead 100644
--- a/test/app.hpp
+++ b/test/app.hpp
@@ -13,14 +13,16 @@
#endif
namespace floormat {
-struct floormat final : private FM_APPLICATION
+struct test_app final : private FM_APPLICATION
{
- explicit floormat(const Arguments& arguments);
- ~floormat();
+ using Application = FM_APPLICATION;
+ explicit test_app(const Arguments& arguments);
+ ~test_app();
int exec() override;
static bool test_json();
static bool test_tile_iter();
static bool test_const_math();
static bool test_serializer();
+ static bool test_entity();
};
} // namespace floormat