summaryrefslogtreecommitdiff
path: root/res/tests/windows.cpp
blob: 20063ad709b422edd1c0192ee660ec1a61d73231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <catch2/catch_test_macros.hpp>

#include <gtkmm/builder.h>

TEST_CASE("GResource for main_window")
{
  auto builder = Gtk::Builder::create_from_resource("/ch/arknet/Turns/windows/main_window.ui");

  SECTION("can create Gtk.Builder for the main window UI definition")
  {
    REQUIRE(builder);
  }
}