#include "turns/app/widgets/participant_row.hpp" #include "turns/domain/disposition.hpp" #include "turns/domain/participant.hpp" #include "turns/lang/messages.hpp" #include #include #include #include #include namespace turns::app::widgets::tests { TEST_CASE("A freshly constructed participant row") { SECTION("can be created without a participant") { REQUIRE(Gtk::make_managed(Glib::RefPtr{})); } SECTION("can be created with a participant") { REQUIRE(Gtk::make_managed(domain::participant::create("Tazmyla Fireforge", 13, domain::disposition::secret))); } } } // namespace turns::app::widgets::tests