00001 00004 /***************************************************************************** 00005 ** Includes 00006 *****************************************************************************/ 00007 00008 // gtest 00009 #include <gtest/gtest.h> 00010 00011 // Run all the tests that were declared with TEST() 00012 int main(int argc, char **argv) 00013 { 00014 testing::InitGoogleTest(&argc, argv); 00015 srand((int)time(0)); 00016 return RUN_ALL_TESTS(); 00017 }