diff options
Diffstat (limited to 'ui/tests/windows/resources.cpp')
| -rw-r--r-- | ui/tests/windows/resources.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/tests/windows/resources.cpp b/ui/tests/windows/resources.cpp new file mode 100644 index 0000000..315181a --- /dev/null +++ b/ui/tests/windows/resources.cpp @@ -0,0 +1,13 @@ +#include <catch2/catch_test_macros.hpp> + +#include <gtkmm/builder.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") + { + REQUIRE(builder); + } +}
\ No newline at end of file |
