Files
openmesh/src/Unittests/unittests.cc

8 lines
137 B
C++
Raw Normal View History

#include <gtest/gtest.h>
int main(int _argc, char** _argv) {
testing::InitGoogleTest(&_argc, _argv);
return RUN_ALL_TESTS();
}