You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 line
728 B

  1. #ifndef TESTPPD_H
  2. #define TESTPPD_H
  3. #include <cppunit/TestFixture.h>
  4. #include <cppunit/extensions/HelperMacros.h>
  5. #include <assimp/scene.h>
  6. #include <BaseProcess.h>
  7. using namespace std;
  8. using namespace Assimp;
  9. class SharedPPDataTest : public CPPUNIT_NS :: TestFixture
  10. {
  11. CPPUNIT_TEST_SUITE (SharedPPDataTest);
  12. CPPUNIT_TEST (testPODProperty);
  13. CPPUNIT_TEST (testPropertyPointer);
  14. CPPUNIT_TEST (testPropertyDeallocation);
  15. CPPUNIT_TEST_SUITE_END ();
  16. public:
  17. void setUp (void);
  18. void tearDown (void);
  19. protected:
  20. void testPODProperty (void);
  21. void testPropertyPointer (void);
  22. void testPropertyDeallocation (void);
  23. private:
  24. SharedPostProcessInfo* shared;
  25. };
  26. #endif