aboutsummaryrefslogtreecommitdiff
path: root/test/test-gtest.cpp
diff options
context:
space:
mode:
authorAllan LeSage <allanlesage@gmail.com>2012-03-27 15:31:28 -0500
committerAllan LeSage <allanlesage@gmail.com>2012-03-27 15:31:28 -0500
commitc9f1e2838a8da6eefb875fee2e3b43a8a04efb80 (patch)
tree2bfd914a9100a79c80b666297f5cbe4c9bd9b69e /test/test-gtest.cpp
parent5996de39f38da7d605a999100a6c4a571ad6b66e (diff)
parent0e5b8f77b3320b12f497153b7a781272aacac00a (diff)
downloadayatana-indicator-messages-c9f1e2838a8da6eefb875fee2e3b43a8a04efb80.tar.gz
ayatana-indicator-messages-c9f1e2838a8da6eefb875fee2e3b43a8a04efb80.tar.bz2
ayatana-indicator-messages-c9f1e2838a8da6eefb875fee2e3b43a8a04efb80.zip
Merge of prior fixes for TDD tooling.
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);
+}