diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-24 13:23:55 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-24 13:23:55 +0200 |
| commit | 4d0a7d99ebf55ad2d0e583759699b8b4d77a7907 (patch) | |
| tree | 302a2661c5ae099129db40c75cbadf6b5e8c9bd4 /ui/tests/windows/resources.cpp | |
| parent | f3317ddcaa8af0fb7b4be475dc97ef0649d1975b (diff) | |
| download | turns-4d0a7d99ebf55ad2d0e583759699b8b4d77a7907.tar.xz turns-4d0a7d99ebf55ad2d0e583759699b8b4d77a7907.zip | |
app: move ui code to ui library
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 |
