blob: c2fe10febadfeb5a29167342c083aee0172f888b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <catch2/catch_session.hpp>
#include <glibmm/init.h>
#include <giomm/init.h>
namespace turns::tests
{
auto register_types() -> void;
} // namespace turns::tests
auto main(int argc, char * argv[]) -> int
{
Gio::init();
Glib::init();
turns::tests::register_types();
return Catch::Session().run(argc, argv);
}
|