axmol/test_uphone/tests/tests.h

41 lines
825 B
C
Raw Normal View History

#ifndef _TESTS_H_
#define _TESTS_H_
#include "ActionsTest/ActionsTest.h"
2010-08-20 14:35:37 +08:00
#include "TransitionsTest/TransitionsTest.h"
2010-08-21 10:26:26 +08:00
#include "ProgressActionsTest/ProgressActionsTest.h"
enum
{
2010-08-20 14:35:37 +08:00
TEST_ACTIONS = 0,
TEST_TRANSITIONS,
2010-08-21 10:26:26 +08:00
TEST_PROGRESS_ACTIONS,
2010-08-20 14:35:37 +08:00
// TEST_TEXTURE2D,
// TEST_SPRITE,
// TEST_LAYER,
// TEST_SCENE,
// TEST_FONT,
// TEST_MENU,
// TEST_ACTIONS_MANAGER,
// TEST_INTERVAL,
// TEST_TOUCHES,
TESTS_COUNT,
};
2010-08-19 15:55:55 +08:00
const std::string g_aTestNames[TESTS_COUNT] = {
"ActionsTest",
2010-08-20 14:35:37 +08:00
"TransitionsTest",
2010-08-21 10:26:26 +08:00
"ProgressActionsTest",
2010-08-20 14:35:37 +08:00
// "Texture2dTest",
// "SpriteTest",
// "LayerTest",
// "SceneTest",
// "FontTest",
// "MenuTest",
// "ActionManagerTest",
// "IntervalTest",
// "TouchesTest",
2010-08-19 15:55:55 +08:00
};
#endif