aboutsummaryrefslogtreecommitdiff
path: root/tests/test-dbus-listener.cc
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-05-27 08:35:52 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-05-27 08:35:52 -0500
commit675cc7955e0e8834a3ea4bb46fb347bb744f24a7 (patch)
tree17944958d08392202b1f54eefd340e11f7757ed0 /tests/test-dbus-listener.cc
parent2f1281d4faa6bed2a0be484bd722504df290880c (diff)
downloadayatana-indicator-power-675cc7955e0e8834a3ea4bb46fb347bb744f24a7.tar.gz
ayatana-indicator-power-675cc7955e0e8834a3ea4bb46fb347bb744f24a7.tar.bz2
ayatana-indicator-power-675cc7955e0e8834a3ea4bb46fb347bb744f24a7.zip
Add skeleton test for IndicatorPowerDbusListener
Diffstat (limited to 'tests/test-dbus-listener.cc')
-rw-r--r--tests/test-dbus-listener.cc73
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/test-dbus-listener.cc b/tests/test-dbus-listener.cc
new file mode 100644
index 0000000..869d08a
--- /dev/null
+++ b/tests/test-dbus-listener.cc
@@ -0,0 +1,73 @@
+/*
+Copyright 2012 Canonical Ltd.
+
+Authors:
+ Charles Kerr <charles.kerr@canonical.com>
+
+This program is free software: you can redistribute it and/or modify it
+under the terms of the GNU General Public License version 3, as published
+by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranties of
+MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along
+with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include <gtest/gtest.h>
+
+#include "dbus-listener.h"
+#include "device.h"
+
+/***
+****
+***/
+
+namespace
+{
+ void ensure_glib_initialized ()
+ {
+ static bool initialized = false;
+
+ if (G_UNLIKELY(!initialized))
+ {
+ initialized = true;
+ g_type_init();
+ }
+ }
+}
+
+/***
+****
+***/
+
+class DbusListenerTest : public ::testing::Test
+{
+ protected:
+
+ virtual void SetUp()
+ {
+ ensure_glib_initialized ();
+ }
+
+ virtual void TearDown()
+ {
+ }
+};
+
+/***
+****
+***/
+
+TEST_F(DbusListenerTest, GObjectNew)
+{
+ GObject * o = G_OBJECT (g_object_new (INDICATOR_POWER_DBUS_LISTENER_TYPE, NULL));
+ ASSERT_TRUE (o != NULL);
+ ASSERT_TRUE (INDICATOR_IS_POWER_DBUS_LISTENER(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);
+}
+