mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
412f6f5352
* Separate build directory for tests and TESTING define * fixup! Separate build directory for tests and TESTING define * fixup! Separate build directory for tests and TESTING define * fixup! Separate build directory for tests and TESTING define
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
#ifndef GUARD_TEST_RUNNER_H
|
|
#define GUARD_TEST_RUNNER_H
|
|
|
|
extern const bool8 gTestRunnerEnabled;
|
|
extern const bool8 gTestRunnerHeadless;
|
|
|
|
#if TESTING
|
|
|
|
extern const bool8 gTestRunnerSkipIsFail;
|
|
|
|
void TestRunner_Battle_RecordAbilityPopUp(u32 battlerId, u32 ability);
|
|
void TestRunner_Battle_RecordAnimation(u32 animType, u32 animId);
|
|
void TestRunner_Battle_RecordHP(u32 battlerId, u32 oldHP, u32 newHP);
|
|
void TestRunner_Battle_RecordMessage(const u8 *message);
|
|
void TestRunner_Battle_RecordStatus1(u32 battlerId, u32 status1);
|
|
void TestRunner_Battle_AfterLastTurn(void);
|
|
|
|
void TestRunner_Battle_CheckBattleRecordActionType(u32 battlerId, u32 recordIndex, u32 actionType);
|
|
|
|
#else
|
|
|
|
#define TestRunner_Battle_RecordAbilityPopUp(...) (void)0
|
|
#define TestRunner_Battle_RecordAnimation(...) (void)0
|
|
#define TestRunner_Battle_RecordHP(...) (void)0
|
|
#define TestRunner_Battle_RecordMessage(...) (void)0
|
|
#define TestRunner_Battle_RecordStatus1(...) (void)0
|
|
#define TestRunner_Battle_AfterLastTurn(...) (void)0
|
|
|
|
#define TestRunner_Battle_CheckBattleRecordActionType(...) (void)0
|
|
|
|
#endif
|
|
|
|
#endif
|