aboutsummaryrefslogtreecommitdiff
path: root/test/test-gtest.cpp
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2012-03-21 16:49:51 -0400
committerKen VanDine <ken.vandine@canonical.com>2012-03-21 16:49:51 -0400
commit3b5f1f96c4c72df927ba4266c03ac4bec64864c0 (patch)
tree93bc7aaeb4e2a6eb6899f58a858bc172537c7ade /test/test-gtest.cpp
parent2ac0106d8114b81b86bfaeabf8746375425563a2 (diff)
parentb6760ba8d8977c9ebbf0f49d427310bd8dd4d58d (diff)
downloadayatana-indicator-messages-3b5f1f96c4c72df927ba4266c03ac4bec64864c0.tar.gz
ayatana-indicator-messages-3b5f1f96c4c72df927ba4266c03ac4bec64864c0.tar.bz2
ayatana-indicator-messages-3b5f1f96c4c72df927ba4266c03ac4bec64864c0.zip
* New upstream release.
* Fix for missing icons in the messaging menu (LP: #960553) * Fix i18n for description (LP: #957525) * Implementing initial testing * Fixing blacklists (LP: #939258) * debian/control: Adding dep on libgtest-dev
Diffstat (limited to 'test/test-gtest.cpp')
-rw-r--r--test/test-gtest.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test-gtest.cpp b/test/test-gtest.cpp
new file mode 100644
index 0000000..1cc97be
--- /dev/null
+++ b/test/test-gtest.cpp
@@ -0,0 +1,12 @@
+
+#include <glib.h>
+#include <gtest/gtest.h>
+
+extern "C" {
+ #include "launcher-menu-item.h"
+}
+
+TEST(LauncherMenuItem, NameInitialized) {
+ g_type_init();
+ EXPECT_TRUE(true);
+}