Krzysztof Grobelny | b564594 | 2020-09-29 11:52:45 +0200 | [diff] [blame] | 1 | #include "dbus_environment.hpp" |
Szymon Dompke | 1cdd7e4 | 2022-06-08 14:43:13 +0200 | [diff] [blame^] | 2 | #include "helpers.hpp" |
Krzysztof Grobelny | b564594 | 2020-09-29 11:52:45 +0200 | [diff] [blame] | 3 | |
4 | #include <gmock/gmock.h> | ||||
5 | |||||
6 | int 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 | } |