00001 // Bring in gtest 00002 #include <gtest/gtest.h> 00003 00004 // Run all the tests that were declared with TEST() 00005 int main(int argc, char **argv) 00006 { 00007 testing::InitGoogleTest(&argc, argv); 00008 return RUN_ALL_TESTS(); 00009 }