summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/tests/windows/resources.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/ui/tests/windows/resources.cpp b/ui/tests/windows/resources.cpp
index 315181a..86db03e 100644
--- a/ui/tests/windows/resources.cpp
+++ b/ui/tests/windows/resources.cpp
@@ -1,12 +1,25 @@
#include <catch2/catch_test_macros.hpp>
#include <gtkmm/builder.h>
+#include <gtkmm/widget.h>
+
+#include <adwaita.h>
TEST_CASE("GResource for tracker")
{
auto builder = Gtk::Builder::create_from_resource("/windows/tracker.ui");
- SECTION("can create Gtk.Builder for the main window UI definition")
+ SECTION("can create Gtk.Builder for the tracker window UI definition")
+ {
+ REQUIRE(builder);
+ }
+}
+
+TEST_CASE("GResource for participant_editor")
+{
+ auto builder = Gtk::Builder::create_from_resource("/windows/participant_editor.ui");
+
+ SECTION("can create Gtk.Builder for the participant_editor window UI definition")
{
REQUIRE(builder);
}