mirror of https://github.com/axmolengine/axmol.git
18 lines
231 B
C
18 lines
231 B
C
|
#ifndef _JNI_TEST_H_
|
||
|
#define _JNI_TEST_H_
|
||
|
|
||
|
#include "cocos2d.h"
|
||
|
#include "../BaseTest.h"
|
||
|
|
||
|
DEFINE_TEST_SUITE(JNITests);
|
||
|
|
||
|
class JNITest : public TestCase
|
||
|
{
|
||
|
public:
|
||
|
CREATE_FUNC(JNITest);
|
||
|
|
||
|
JNITest();
|
||
|
};
|
||
|
|
||
|
#endif // _JNI_TEST_H_
|