From: Peng Li Date: Tue, 17 Jul 2018 08:10:27 +0000 (+0800) Subject: Add gtest main file X-Git-Url: http://47.100.26.94:8080/?a=commitdiff_plain;ds=inline;h=96603a1f86b096cf674bd54bfae73d4061d3d81f;p=trackerpp.git Add gtest main file --- diff --git a/test/TestMain.cpp b/test/TestMain.cpp new file mode 100644 index 0000000..3568448 --- /dev/null +++ b/test/TestMain.cpp @@ -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(); +}