您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

utPretransformVertices.h 729 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef TESTLBW_H
  2. #define TESTLBW_H
  3. #include <cppunit/TestFixture.h>
  4. #include <cppunit/extensions/HelperMacros.h>
  5. #include <assimp/scene.h>
  6. #include <PretransformVertices.h>
  7. using namespace std;
  8. using namespace Assimp;
  9. class PretransformVerticesTest : public CPPUNIT_NS :: TestFixture
  10. {
  11. CPPUNIT_TEST_SUITE (PretransformVerticesTest);
  12. CPPUNIT_TEST (testProcess_CollapseHierarchy);
  13. CPPUNIT_TEST (testProcess_KeepHierarchy);
  14. CPPUNIT_TEST_SUITE_END ();
  15. public:
  16. void setUp (void);
  17. void tearDown (void);
  18. protected:
  19. void testProcess_CollapseHierarchy (void);
  20. void testProcess_KeepHierarchy (void);
  21. private:
  22. aiScene* scene;
  23. PretransformVertices* process;
  24. };
  25. #endif