summaryrefslogtreecommitdiff
path: root/src/test/DBusFreedesktopPropertiesTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/DBusFreedesktopPropertiesTest.cpp')
-rw-r--r--src/test/DBusFreedesktopPropertiesTest.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/DBusFreedesktopPropertiesTest.cpp b/src/test/DBusFreedesktopPropertiesTest.cpp
index 19cfb6e..be6706e 100644
--- a/src/test/DBusFreedesktopPropertiesTest.cpp
+++ b/src/test/DBusFreedesktopPropertiesTest.cpp
@@ -24,19 +24,6 @@ static const std::string domain = "local";
static const std::string commonApiAddress = "commonapi.tests.TestFreedesktopInterface";
static const std::string commonApiDerivedAddress = "commonapi.tests.TestFreedesktopDerivedInterface";
-class Environment: public ::testing::Environment {
-public:
- virtual ~Environment() {
- }
-
- virtual void SetUp() {
- CommonAPI::Runtime::setProperty("LibraryBase", "fakeGlueCode");
- }
-
- virtual void TearDown() {
- }
-};
-
class FreedesktopPropertiesTest: public ::testing::Test {
protected:
void SetUp() {
@@ -235,7 +222,6 @@ TEST_F(FreedesktopPropertiesOnInheritedInterfacesTest, CanGetAndSetRemoteAttribu
#ifndef __NO_MAIN__
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
- ::testing::AddGlobalTestEnvironment(new Environment());
return RUN_ALL_TESTS();
}
#endif