mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
bone test
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
#ifndef BONE_TEST_H
|
||||
#define BONE_TEST_H
|
||||
|
||||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
namespace vb01{
|
||||
class Model;
|
||||
class Node;
|
||||
|
||||
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();
|
||||
|
||||
Model *model = nullptr;
|
||||
Node *rootNode = nullptr;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user