summaryrefslogtreecommitdiff
path: root/src/test/DBusFactoryTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/DBusFactoryTest.cpp')
-rw-r--r--src/test/DBusFactoryTest.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/DBusFactoryTest.cpp b/src/test/DBusFactoryTest.cpp
index 866130a..cd6a718 100644
--- a/src/test/DBusFactoryTest.cpp
+++ b/src/test/DBusFactoryTest.cpp
@@ -47,19 +47,6 @@ static const std::string fileString =
"dbus_bustype=system\n"
"";
-class Environment: public ::testing::Environment {
-public:
- virtual ~Environment() {
- }
-
- virtual void SetUp() {
- CommonAPI::Runtime::setProperty("LibraryBase", "fakeGlueCode");
- }
-
- virtual void TearDown() {
- }
-};
-
class DBusProxyFactoryTest: public ::testing::Test {
protected:
virtual void SetUp() {
@@ -152,7 +139,6 @@ TEST_F(DBusProxyFactoryTest, CreateNamedFactory) {
#ifndef __NO_MAIN__
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
- ::testing::AddGlobalTestEnvironment(new Environment());
return RUN_ALL_TESTS();
}
#endif