blob: 8f897d92e2e3e1fd8e0d5d997ed60e99ac40ff71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
* SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
* SPDX-License-Identifier: LGPL-2.1-only
*/
#include "turnsmm/init.hpp"
#include <catch2/internal/catch_test_run_info.hpp>
#include <catch2/reporters/catch_reporter_event_listener.hpp>
#include <catch2/reporters/catch_reporter_registrars.hpp>
#include <adwaitamm/application.hpp>
#include <adwaitamm/wrap_init.hpp>
#include <glibmm/i18n.h>
#include <glibmm/refptr.h>
#include <gtkmm/init.h>
#include <libintl.h>
#include <clocale>
namespace turns::ui::tests
{
struct gtk_test : Catch::EventListenerBase
{
using Catch::EventListenerBase::EventListenerBase;
auto testRunStarting(Catch::TestRunInfo const &) -> void override
{
setlocale(LC_ALL, "");
bindtextdomain("turns", TESTLOCALEDIR);
bind_textdomain_codeset("turns", "UTF-8");
textdomain("turns");
m_app = Adwaita::Application::create("ch.arknet.turns.tests.ui");
Turns::init();
}
auto testCaseEnded(Catch::TestCaseStats const &) -> void override
{
setlocale(LC_ALL, "");
}
private:
Glib::RefPtr<Adwaita::Application> m_app{};
};
CATCH_REGISTER_LISTENER(gtk_test);
} // namespace turns::ui::tests
|