2012-04-16 18:58:43 +08:00
|
|
|
#include "CCControlSceneManager.h"
|
|
|
|
#include "CCControlScene.h"
|
2012-04-16 23:16:03 +08:00
|
|
|
#include "CCControlButtonTest/CCControlButtonTest.h"
|
2012-04-17 11:12:05 +08:00
|
|
|
#include "CCControlColourPicker/CCControlColourPickerTest.h"
|
2012-04-17 16:00:18 +08:00
|
|
|
#include "CCControlSliderTest/CCControlSliderTest.h"
|
|
|
|
#include "CCControlSwitchTest/CCControlSwitchTest.h"
|
2012-09-25 16:57:51 +08:00
|
|
|
#include "CCControlPotentiometerTest/CCControlPotentiometerTest.h"
|
|
|
|
#include "CCControlStepperTest/CCControlStepperTest.h"
|
2012-04-16 18:58:43 +08:00
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
ControlTests::ControlTests()
|
2012-04-16 18:58:43 +08:00
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
addTestCase("CCControlSliderTest", [](){ return ControlSliderTest::create(); });
|
|
|
|
addTestCase("ControlColourPickerTest", [](){ return ControlColourPickerTest::create(); });
|
|
|
|
addTestCase("ControlSwitchTest", [](){ return ControlSwitchTest::create(); });
|
|
|
|
addTestCase("ControlButtonTest_HelloVariableSize", [](){ return ControlButtonTest_HelloVariableSize::create(); });
|
|
|
|
addTestCase("ControlButtonTest_Event", [](){ return ControlButtonTest_Event::create(); });
|
|
|
|
addTestCase("ControlButtonTest_Styling", [](){ return ControlButtonTest_Styling::create(); });
|
|
|
|
addTestCase("ControlPotentiometerTest", [](){ return ControlPotentiometerTest::create(); });
|
|
|
|
addTestCase("CCControlStepperTest", [](){ return ControlStepperTest::create(); });
|
2012-04-16 18:58:43 +08:00
|
|
|
}
|