Add test for Predictor
[trackerpp.git] / test / TestMain.cpp
1 #include "gtest/gtest.h"
2 #include "Logger.h"
3
4 int main(int argc, char** argv) {
5   // Disables elapsed time by default.
6   ::testing::GTEST_FLAG(print_time) = false;
7
8   // This allows the user to override the flag on the command line.
9   ::testing::InitGoogleTest(&argc, argv);
10   initLogger("../config/log4cpp.properties");
11
12   return RUN_ALL_TESTS();
13 }