Created first unittest for OpenMesh.

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@405 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Mike Kremer
2011-09-01 09:28:38 +00:00
parent 465cce0654
commit 025b962924
6 changed files with 22744 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <gtest/gtest.h>
#include "unittests_loading.hh"
int main(int _argc, char** _argv) {
testing::InitGoogleTest(&_argc, _argv);
return RUN_ALL_TESTS();
}