1 #include "dbus_environment.hpp" 2 #include "helpers.hpp" 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 return ret; 15 } 16