axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextAtlasTest/UITextAtlasTest.h

33 lines
667 B
C
Raw Normal View History

2014-03-04 16:51:35 +08:00
#ifndef __TestCpp__UITextAtlasTest__
#define __TestCpp__UITextAtlasTest__
#include "../UIScene.h"
DEFINE_TEST_SUITE(UITextAtlasTests);
2014-03-04 16:51:35 +08:00
class UITextAtlasTest : public UIScene
{
public:
CREATE_FUNC(UITextAtlasTest);
virtual bool init() override;
2015-12-01 11:07:02 +08:00
void printWidgetResources(cocos2d::Ref* sender);
2015-11-30 16:17:13 +08:00
protected:
cocos2d::ui::TextAtlas* _textAtlas;
2014-03-04 16:51:35 +08:00
};
class UITextAtlasETC1ShadowTest : public UIScene
{
public:
CREATE_FUNC(UITextAtlasETC1ShadowTest);
virtual bool init() override;
void printWidgetResources(cocos2d::Ref* sender);
protected:
cocos2d::ui::TextAtlas* _textAtlas;
};
2014-03-04 16:51:35 +08:00
#endif /* defined(__TestCpp__UITextAtlasTest__) */