bone test

This commit is contained in:
devZoGok
2021-10-19 19:06:41 +03:00
parent 532b1f6363
commit bae1b7a9cc
5 changed files with 80 additions and 3 deletions
+28
View File
@@ -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