Просмотр исходного кода

Forgot to add this file after a name change.

Bart Hertog 6 лет назад
Родитель
Сommit
fbb2f9667c
1 измененных файлов с 9 добавлено и 0 удалено
  1. 9 0
      test/test_EmbeddedProto.cpp

+ 9 - 0
test/test_EmbeddedProto.cpp

@@ -0,0 +1,9 @@
+#include <gtest/gtest.h>
+#include <gmock/gmock.h>
+
+int main(int argc, char **argv) {
+  ::testing::InitGoogleTest(&argc, argv);
+  ::testing::InitGoogleMock(&argc, argv);
+  return RUN_ALL_TESTS();
+}
+