diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-13 18:08:44 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-13 20:43:16 +0100 |
commit | e45bf04c0f86ab08d5e811efb3a3d0b508f449c3 (patch) | |
tree | 7045c6efd07f670665fade25f55fc84ed6848eb3 /test/main.cpp | |
parent | 62172828e4114437b88456dd12d90066fde458df (diff) |
rename test app
Diffstat (limited to 'test/main.cpp')
-rw-r--r-- | test/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/main.cpp b/test/main.cpp index 1dc91e9e..5483160f 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -3,20 +3,20 @@ namespace floormat { -floormat::floormat(const Arguments& arguments): - FM_APPLICATION { +test_app::test_app(const Arguments& arguments): + Application { arguments, Configuration{} } { } -floormat::~floormat() +test_app::~test_app() { loader_::destroy(); } -int floormat::exec() +int test_app::exec() { bool ret = true; ret &= test_json(); @@ -30,6 +30,6 @@ int floormat::exec() int main(int argc, char** argv) { - floormat::floormat application{{argc, argv}}; + floormat::test_app application{{argc, argv}}; return application.exec(); } |