aboutsummaryrefslogtreecommitdiff
path: root/test/test-gtest.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-03-21 15:28:13 -0500
committerTed Gould <ted@gould.cx>2012-03-21 15:28:13 -0500
commit7db5c14740ce0deae6ed4279cde70b731c56390a (patch)
tree11f216a830123317fecae3668a25cf02e6d229a9 /test/test-gtest.cpp
parent4b2b0165658d3429f415c3014517ca13721a38b5 (diff)
parent785195578165ab8add69dc0c23acef0997ac0482 (diff)
downloadayatana-indicator-messages-7db5c14740ce0deae6ed4279cde70b731c56390a.tar.gz
ayatana-indicator-messages-7db5c14740ce0deae6ed4279cde70b731c56390a.tar.bz2
ayatana-indicator-messages-7db5c14740ce0deae6ed4279cde70b731c56390a.zip
Import upstream version 0.5.94
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);
+}