mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
29 lines
546 B
C++
29 lines
546 B
C++
#ifndef BONE_TEST_H
|
|
#define BONE_TEST_H
|
|
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace vb01{
|
|
class Node;
|
|
class Skeleton;
|
|
|
|
class BoneTest : public CppUnit::TestFixture{
|
|
CPPUNIT_TEST_SUITE(BoneTest);
|
|
CPPUNIT_TEST(testGetModelSpacePos);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
BoneTest(){}
|
|
void setUp();
|
|
void tearDown();
|
|
private:
|
|
void testGetModelSpacePos();
|
|
|
|
Node *rootNode = nullptr, *modelNodeParent = nullptr, *modelNode = nullptr;
|
|
Skeleton *skeleton = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif
|