summaryrefslogtreecommitdiff
path: root/src/test/DBusLoadTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/DBusLoadTest.cpp')
-rw-r--r--src/test/DBusLoadTest.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/DBusLoadTest.cpp b/src/test/DBusLoadTest.cpp
index 3eed056..9f23376 100644
--- a/src/test/DBusLoadTest.cpp
+++ b/src/test/DBusLoadTest.cpp
@@ -50,19 +50,6 @@ public:
}
};
-class Environment: public ::testing::Environment {
-public:
- virtual ~Environment() {
- }
-
- virtual void SetUp() {
- CommonAPI::Runtime::setProperty("LibraryBase", "fakeGlueCode");
- }
-
- virtual void TearDown() {
- }
-};
-
class DBusLoadTest: public ::testing::Test {
protected:
virtual void SetUp() {
@@ -306,7 +293,6 @@ TEST_F(DBusLoadTest, MultipleClientsMultipleServersCallsSucceed) {
#ifndef __NO_MAIN__
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
- ::testing::AddGlobalTestEnvironment(new Environment());
return RUN_ALL_TESTS();
}
#endif