|
|
@@ -0,0 +1,17 @@
|
|
|
+// Created on: 2010-6-28
|
|
|
+// Author: tanghai
|
|
|
+
|
|
|
+#include <boost/function.hpp>
|
|
|
+#include <gtest/gtest.h>
|
|
|
+#include <gflags/gflags.h>
|
|
|
+#include <glog/logging.h>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+int main(int argc, char* argv[])
|
|
|
+{
|
|
|
+ google::ParseCommandLineFlags(&argc, &argv, true);
|
|
|
+ google::InitGoogleLogging(argv[0]);
|
|
|
+ testing::InitGoogleTest(&argc, argv);
|
|
|
+ return RUN_ALL_TESTS();
|
|
|
+}
|