xref: /openbmc/telemetry/tests/src/main.cpp (revision 95f77e62)
1b5645947SKrzysztof Grobelny #include "dbus_environment.hpp"
2*1cdd7e4fSSzymon Dompke #include "helpers.hpp"
3b5645947SKrzysztof Grobelny 
4b5645947SKrzysztof Grobelny #include <gmock/gmock.h>
5b5645947SKrzysztof Grobelny 
main(int argc,char ** argv)6b5645947SKrzysztof Grobelny int main(int argc, char** argv)
7b5645947SKrzysztof Grobelny {
8b5645947SKrzysztof Grobelny     auto env = new DbusEnvironment;
9b5645947SKrzysztof Grobelny 
10b5645947SKrzysztof Grobelny     testing::InitGoogleTest(&argc, argv);
11b5645947SKrzysztof Grobelny     testing::AddGlobalTestEnvironment(env);
12b5645947SKrzysztof Grobelny     auto ret = RUN_ALL_TESTS();
13b5645947SKrzysztof Grobelny 
14b5645947SKrzysztof Grobelny     return ret;
15b5645947SKrzysztof Grobelny }
16