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