37 lines
645 B
C++
37 lines
645 B
C++
#ifndef TESTLBW_H
|
|
#define TESTLBW_H
|
|
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include <assimp/scene.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
|