diff options
Diffstat (limited to 'lib/tests/turnsmm/glibmm-test.cpp')
| -rw-r--r-- | lib/tests/turnsmm/glibmm-test.cpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/tests/turnsmm/glibmm-test.cpp b/lib/tests/turnsmm/glibmm-test.cpp new file mode 100644 index 0000000..1c93cb7 --- /dev/null +++ b/lib/tests/turnsmm/glibmm-test.cpp @@ -0,0 +1,41 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + +#include "turns-participant.h" +#include "turns-turn-order.h" +#include "turnsmm/init.hpp" +#include "turnsmm/participant.hpp" +#include "turnsmm/turn-order.hpp" + +#include <catch2/catch_test_macros.hpp> +#include <catch2/internal/catch_test_run_info.hpp> +#include <catch2/reporters/catch_reporter_event_listener.hpp> +#include <catch2/reporters/catch_reporter_registrars.hpp> + +#include <glibmm/init.h> + +namespace turns::core::tests +{ + + struct glibmm_test : Catch::EventListenerBase + { + using Catch::EventListenerBase::EventListenerBase; + + auto testRunStarting(Catch::TestRunInfo const &) -> void override + { + Glib::init(); + Turns::init(); + + CHECK(Turns::Participant::get_base_type() == turns_participant_get_type()); + CHECK(Glib::Value<Turns::Participant::Disposition>::value_type() == turns_participant_disposition_get_type()); + + CHECK(Turns::TurnOrder::get_base_type() == turns_turn_order_get_type()); + CHECK(Glib::Value<Turns::TurnOrder::SortMode>::value_type() == turns_turn_order_sort_mode_get_type()); + } + }; + + CATCH_REGISTER_LISTENER(glibmm_test); + +} // namespace turns::core::tests
\ No newline at end of file |
