Files
3rd-party-lib-fff/gtest/gtest-main.cc
2012-04-21 07:45:37 +01:00

7 lines
124 B
C++

#include "gtest.h"
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}