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.
 
 
 
 
 
 

34 lines
619 B

  1. #ifndef TESTNORMALS_H
  2. #define TESTNORMALS_H
  3. #include <FindInvalidDataProcess.h>
  4. using namespace std;
  5. using namespace Assimp;
  6. class FindInvalidDataProcessTest : public CPPUNIT_NS :: TestFixture
  7. {
  8. CPPUNIT_TEST_SUITE (FindInvalidDataProcessTest);
  9. CPPUNIT_TEST (testStepNegativeResult);
  10. CPPUNIT_TEST (testStepPositiveResult);
  11. CPPUNIT_TEST_SUITE_END ();
  12. public:
  13. void setUp (void);
  14. void tearDown (void);
  15. protected:
  16. void testStepPositiveResult (void);
  17. void testStepNegativeResult (void);
  18. private:
  19. aiMesh* pcMesh;
  20. FindInvalidDataProcess* piProcess;
  21. };
  22. #endif