Files
openmesh/src/Unittests/unittests.cc
Hans-Christian Ebke bbb3a55ee7 Split up unit tests into multiple compile units.
Added mesh_cast unit test.


git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@958 fdac6126-5c0c-442c-9429-916003d36597
2013-09-20 14:21:08 +00:00

8 lines
137 B
C++

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