Merge branch 'common_services'
[ptas] / tests / ut_gmocktemplate / ut_gmocktemplate.cpp
diff --git a/tests/ut_gmocktemplate/ut_gmocktemplate.cpp b/tests/ut_gmocktemplate/ut_gmocktemplate.cpp
new file mode 100644 (file)
index 0000000..c4f58f9
--- /dev/null
@@ -0,0 +1,12 @@
+#include <gmock/gmock.h>
+#include <gtest/gtest.h>
+
+TEST(TestSuiteName, TestMethodName)
+{
+}
+
+int main(int argc, char *argv[])
+{
+    ::testing::InitGoogleMock(&argc, argv);
+    return RUN_ALL_TESTS();
+}