2013-09-20 22:23:13 +08:00
|
|
|
#ifndef __COMPONENTSTESTSCENE_H__
|
|
|
|
#define __COMPONENTSTESTSCENE_H__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "extensions/cocos-ext.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "BaseTest.h"
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(CocoStudioComponentsTests);
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
class CocoStudioComponentsTest : public TestCase
|
2013-09-20 22:23:13 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(CocoStudioComponentsTest);
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual bool init() override;
|
2013-09-20 22:23:13 +08:00
|
|
|
|
|
|
|
cocos2d::Node* createGameScene();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __HELLOWORLD_SCENE_H__
|