Added factory provider for default log streams. Added default log streams to std::out and std::cerr. Updated VC8 project config, boost workarounds is now working for the viewer. Updated unit test suite. Fixed some minor issues in the postprocessing-framework. BROKEN: DebugDLL build. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@292 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
34 lines
652 B
C++
34 lines
652 B
C++
#ifndef TESTNORMALS_H
|
|
#define TESTNORMALS_H
|
|
|
|
|
|
#include <FindInvalidDataProcess.h>
|
|
|
|
using namespace std;
|
|
using namespace Assimp;
|
|
|
|
class FindInvalidDataProcessTest : public CPPUNIT_NS :: TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (FindInvalidDataProcessTest);
|
|
CPPUNIT_TEST (testStepNegativeResult);
|
|
CPPUNIT_TEST (testStepPositiveResult);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void setUp (void);
|
|
void tearDown (void);
|
|
|
|
protected:
|
|
|
|
void testStepPositiveResult (void);
|
|
void testStepNegativeResult (void);
|
|
|
|
private:
|
|
|
|
|
|
aiMesh* pcMesh;
|
|
FindInvalidDataProcess* piProcess;
|
|
};
|
|
|
|
#endif
|