aboutsummaryrefslogtreecommitdiff
path: root/tests/test-notify.cc
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-07-16 01:08:54 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-07-16 01:08:54 -0500
commit6ea2db56307d04ac8dba4bcf929cd716f4840359 (patch)
tree92e493a6c6920da886a05185df4cec4969626e7d /tests/test-notify.cc
parent74b8522acb04f547cf291d33c237478a98f6e5d8 (diff)
downloadayatana-indicator-power-6ea2db56307d04ac8dba4bcf929cd716f4840359.tar.gz
ayatana-indicator-power-6ea2db56307d04ac8dba4bcf929cd716f4840359.tar.bz2
ayatana-indicator-power-6ea2db56307d04ac8dba4bcf929cd716f4840359.zip
add first draft of low battery notifications
Diffstat (limited to 'tests/test-notify.cc')
-rw-r--r--tests/test-notify.cc59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/test-notify.cc b/tests/test-notify.cc
new file mode 100644
index 0000000..0b75177
--- /dev/null
+++ b/tests/test-notify.cc
@@ -0,0 +1,59 @@
+/*
+ * Copyright 2014 Canonical Ltd.
+ *
+ * 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/>.
+ *
+ * Authors:
+ * Charles Kerr <charles.kerr@canonical.com>
+ */
+
+#include "device.h"
+#include "service.h"
+
+#include <gtest/gtest.h>
+
+#include <gio/gio.h>
+
+class NotifyTest : public ::testing::Test
+{
+ private:
+
+ typedef ::testing::Test super;
+
+ protected:
+
+ virtual void SetUp()
+ {
+ super::SetUp();
+ }
+
+ virtual void TearDown()
+ {
+ super::TearDown();
+ }
+};
+
+/***
+****
+***/
+
+// mock device provider
+
+// send notifications of a device going down from 50% to 3% by 1% increments
+
+// popup should appear exactly twice: once at 10%, once at 5%
+
+TEST_F(NotifyTest, HelloWorld)
+{
+}
+