aboutsummaryrefslogtreecommitdiff
path: root/tests/indicator-test.cc
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-10-28 18:01:35 -0500
committerTed Gould <ted@gould.cx>2014-10-28 18:01:35 -0500
commitb0ac3df28f96e54d0adca7ba32a4993faffc44d2 (patch)
tree11f9b15f524f83ff2bdb633ada3b7c15d737f604 /tests/indicator-test.cc
parentdec2d5350f47e52539941b45d394516066a19678 (diff)
downloadayatana-indicator-sound-b0ac3df28f96e54d0adca7ba32a4993faffc44d2.tar.gz
ayatana-indicator-sound-b0ac3df28f96e54d0adca7ba32a4993faffc44d2.tar.bz2
ayatana-indicator-sound-b0ac3df28f96e54d0adca7ba32a4993faffc44d2.zip
Setup to getting something to compile and pass. Next steps needed.
Diffstat (limited to 'tests/indicator-test.cc')
-rw-r--r--tests/indicator-test.cc38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/indicator-test.cc b/tests/indicator-test.cc
new file mode 100644
index 0000000..52b131d
--- /dev/null
+++ b/tests/indicator-test.cc
@@ -0,0 +1,38 @@
+/*
+ * 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 as published by
+ * the Free Software Foundation; version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY 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:
+ * Ted Gould <ted@canonical.com>
+ */
+
+#include <gtest/gtest.h>
+#include <gio/gio.h>
+
+#include "indicator-fixture.h"
+
+class IndicatorTest : public IndicatorFixture
+{
+protected:
+ IndicatorTest (void) :
+ IndicatorFixture("/test", "com.test")
+ {
+ }
+
+};
+
+
+TEST_F(IndicatorTest, StartStop) {
+
+}