blob: 39508c8f16145f8e09cb83f1c1d7feec50746fd3 [file] [log] [blame]
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +02001#include "dbus_environment.hpp"
Szymon Dompke1cdd7e42022-06-08 14:43:13 +02002#include "helpers.hpp"
Krzysztof Grobelnyb5645942020-09-29 11:52:45 +02003
4#include <gmock/gmock.h>
5
6int main(int argc, char** argv)
7{
8 auto env = new DbusEnvironment;
9
10 testing::InitGoogleTest(&argc, argv);
11 testing::AddGlobalTestEnvironment(env);
12 auto ret = RUN_ALL_TESTS();
13
14 env->teardown();
15
16 return ret;
17}