aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-device.cc1
-rw-r--r--tests/test-indicator.cc1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-device.cc b/tests/test-device.cc
index 388460e..132d762 100644
--- a/tests/test-device.cc
+++ b/tests/test-device.cc
@@ -45,6 +45,7 @@ TEST(DeviceTest, GObjectNew)
GObject * o = G_OBJECT (g_object_new (INDICATOR_POWER_DEVICE_TYPE, NULL));
ASSERT_TRUE (o != NULL);
ASSERT_TRUE (INDICATOR_IS_POWER_DEVICE(o));
+ g_object_run_dispose (o); // used to get coverage of both branches in the object's dispose func's g_clear_*() calls
g_object_unref (o);
}
diff --git a/tests/test-indicator.cc b/tests/test-indicator.cc
index 52e319f..dedf54c 100644
--- a/tests/test-indicator.cc
+++ b/tests/test-indicator.cc
@@ -96,6 +96,7 @@ TEST_F(IndicatorTest, GObjectNew)
GObject * o = G_OBJECT (g_object_new (INDICATOR_POWER_TYPE, NULL));
ASSERT_TRUE (o != NULL);
ASSERT_TRUE (IS_INDICATOR_POWER(o));
+ g_object_run_dispose (o); // used to get coverage of both branches in the object's dispose func's g_clear_*() calls
g_object_unref (o);
}