blob: 7adec4aadbf8767677642078e278ab9ccad64418 [file] [log] [blame]
#include "dbus_environment.hpp"
#include "helpers.hpp"
#include <gmock/gmock.h>
int main(int argc, char** argv)
{
auto env = new DbusEnvironment;
testing::InitGoogleTest(&argc, argv);
testing::AddGlobalTestEnvironment(env);
auto ret = RUN_ALL_TESTS();
return ret;
}