7 lines
133 B
C++
Raw Normal View History

2012-06-21 14:50:05 +00:00
#include <gtest/gtest.h>
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
2012-06-21 14:50:05 +00:00
return RUN_ALL_TESTS();
}