37 lines
640 B
C
37 lines
640 B
C
|
#ifndef TESTLBW_H
|
||
|
#define TESTLBW_H
|
||
|
|
||
|
#include <cppunit/TestFixture.h>
|
||
|
#include <cppunit/extensions/HelperMacros.h>
|
||
|
|
||
|
#include <aiScene.h>
|
||
|
#include <LimitBoneWeightsProcess.h>
|
||
|
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace Assimp;
|
||
|
|
||
|
class LimitBoneWeightsTest : public CPPUNIT_NS :: TestFixture
|
||
|
{
|
||
|
CPPUNIT_TEST_SUITE (LimitBoneWeightsTest);
|
||
|
CPPUNIT_TEST (testProcess);
|
||
|
CPPUNIT_TEST_SUITE_END ();
|
||
|
|
||
|
public:
|
||
|
void setUp (void);
|
||
|
void tearDown (void);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
void testProcess (void);
|
||
|
|
||
|
|
||
|
private:
|
||
|
|
||
|
LimitBoneWeightsProcess* piProcess;
|
||
|
aiMesh* pcMesh;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|