2014-03-05 21:18:51 +08:00
|
|
|
#include "CustomGUIScene.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#include "CustomTest/CustomImageTest/CustomImageTest.h"
|
2014-03-07 15:36:45 +08:00
|
|
|
#include "CustomTest/CustomParticleWidgetTest/CustomParticleWidgetTest.h"
|
2014-12-01 21:50:05 +08:00
|
|
|
#include "CustomTest/CustomWidgetCallbackBindTest/CustomWidgetCallbackBindTest.h"
|
2014-03-04 16:51:35 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
CustomGUITests::CustomGUITests()
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
addTestCase("Custom widget call back bind Test", [](){ return CustomWidgetCallbackBindScene::create(); });
|
|
|
|
addTestCase("Custom GUI image Test", [](){ return CustomImageScene::create(); });
|
|
|
|
addTestCase("Custom GUI particle widget Test", [](){ return CustomParticleWidgetScene::create(); });
|
2014-03-04 16:51:35 +08:00
|
|
|
}
|