2011-09-01 09:28:38 +00:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
2011-09-01 10:33:58 +00:00
|
|
|
#include "unittests_common.hh"
|
2011-09-01 09:28:38 +00:00
|
|
|
#include "unittests_loading.hh"
|
2011-09-29 15:20:21 +00:00
|
|
|
#include "unittests_trimesh_iterators.hh"
|
2011-10-10 12:24:22 +00:00
|
|
|
#include "unittests_trimesh_circulators.hh"
|
2011-09-01 10:33:58 +00:00
|
|
|
#include "unittests_decimater.hh"
|
2011-09-01 09:28:38 +00:00
|
|
|
|
|
|
|
|
int main(int _argc, char** _argv) {
|
|
|
|
|
|
|
|
|
|
testing::InitGoogleTest(&_argc, _argv);
|
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
|
}
|