blob: b9dc85831f6794c96c2657ea6825a2d0f0500b82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <catch2/catch_session.hpp>
#include <giomm/init.h>
#include <glibmm/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);
}
|