aboutsummaryrefslogtreecommitdiff
path: root/test/test-gtest.cpp
diff options
context:
space:
mode:
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);
+}