Files
vb01/animationControllerTest.h
devZoGok f8d5beb5d6 animation channel improvements
beginning of animation controller test
2021-10-19 19:06:41 +03:00

31 lines
709 B
C++

#ifndef ANIMATION_CONTROLLER_TEST_H
#define ANIMATION_CONTROLLER_TEST_H
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
namespace vb01{
class Skeleton;
class AnimationChannel;
class AnimationController;
class AnimationControllerTest : public CppUnit::TestFixture{
CPPUNIT_TEST_SUITE(AnimationControllerTest);
CPPUNIT_TEST(testPrepareAdjacentValues);
CPPUNIT_TEST_SUITE_END();
public:
AnimationControllerTest(){}
void setUp();
void tearDown();
private:
void createAnimation();
void testPrepareAdjacentValues();
Skeleton *skeleton = nullptr;
AnimationController *controller = nullptr;
AnimationChannel *channel = nullptr;
};
}
#endif