PuzzleSDK
BaseTest.cpp 文件参考
#include "BaseTest.h"
#include "testResource.h"
#include "controller.h"
+ BaseTest.cpp 的引用(Include)关系图:

浏览源代码.

class  TestCustomTableView
 

宏定义

#define TABEL_LABEL_TAG   1024
 

函数

static TestCasegetTestCase (Scene *scene)
 

变量

 USING_NS_CC
 
 USING_NS_CC_EXT
 

宏定义说明

◆ TABEL_LABEL_TAG

#define TABEL_LABEL_TAG   1024

在文件 BaseTest.cpp33 行定义.

函数说明

◆ getTestCase()

static TestCase * getTestCase ( Scene *  scene)
static

在文件 BaseTest.cpp268 行定义.

269{
270 auto transitionScene = dynamic_cast<TransitionScene*>(scene);
271 TestCase* testCase = nullptr;
272 if (transitionScene)
273 {
274 testCase = dynamic_cast<TestCase*>(transitionScene->getInScene());
275 }
276 else
277 {
278 testCase = dynamic_cast<TestCase*>(scene);
279 }
280
281 return testCase;
282}

被这些函数引用 TestSuite::enterNextTest(), TestSuite::enterPreviousTest(), TestSuite::restartCurrTest() , 以及 TestSuite::runThisTest().

+ 这是这个函数的调用关系图:

变量说明

◆ USING_NS_CC

USING_NS_CC

在文件 BaseTest.cpp30 行定义.

◆ USING_NS_CC_EXT

USING_NS_CC_EXT

在文件 BaseTest.cpp31 行定义.