19 lines
336 B
C
19 lines
336 B
C
#include "tests.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "common/globvars.h"
|
|
#include "common/powerup.h"
|
|
|
|
void test_loading_powerups() {
|
|
REQUIRES_DATA_DIRECTORY();
|
|
|
|
LoadPowerups();
|
|
TEST_ASSERT_EQUAL_INT(51, gNumber_of_powerups);
|
|
}
|
|
|
|
void test_powerup_suite() {
|
|
UnitySetTestFile(__FILE__);
|
|
RUN_TEST(test_loading_powerups);
|
|
}
|