Add gtest main file
[trackerpp.git] / test / TestMain.cpp
diff --git a/test/TestMain.cpp b/test/TestMain.cpp
new file mode 100644 (file)
index 0000000..3568448
--- /dev/null
@@ -0,0 +1,11 @@
+#include "gtest/gtest.h"
+
+int main(int argc, char** argv) {
+  // Disables elapsed time by default.
+  ::testing::GTEST_FLAG(print_time) = false;
+
+  // This allows the user to override the flag on the command line.
+  ::testing::InitGoogleTest(&argc, argv);
+
+  return RUN_ALL_TESTS();
+}