mirror of https://github.com/axmolengine/axmol.git
18 lines
318 B
C++
18 lines
318 B
C++
#ifndef _CURRENT_LANGUAGE_TEST_H_
|
|
#define _CURRENT_LANGUAGE_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "../BaseTest.h"
|
|
|
|
DEFINE_TEST_SUITE(CurrentLanguageTests);
|
|
|
|
class CurrentLanguageTest : public TestCase
|
|
{
|
|
public:
|
|
CREATE_FUNC(CurrentLanguageTest);
|
|
|
|
CurrentLanguageTest();
|
|
};
|
|
|
|
#endif // _CURRENT_LANGUAGE_TEST_H_
|