unittest_main.cpp
Go to the documentation of this file.00001 #include <iostream>
00002 #include <gtest/gtest.h>
00003
00004 int main(int argc, char **argv) {
00005 std::cout << "Running unit tests\n";
00006
00007 testing::InitGoogleTest(&argc, argv);
00008 return RUN_ALL_TESTS();
00009 }