server/src/tests.h

57 lines
1.9 KiB
C
Raw Normal View History

#ifndef ERESSEA_TESTS_H
#define ERESSEA_TESTS_H
2014-10-18 14:16:26 +02:00
2014-12-17 19:53:19 +01:00
#include <kernel/types.h>
2014-10-18 14:16:26 +02:00
#include <stdlib.h>
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2014-10-18 14:30:07 +02:00
struct region;
struct unit;
struct faction;
struct building;
struct ship;
struct message;
struct message_list;
struct mlist;
2014-10-18 14:30:07 +02:00
struct item_type;
struct building_type;
struct ship_type;
2014-10-18 14:30:07 +02:00
struct terrain_type;
struct CuTest;
2014-10-18 14:16:26 +02:00
void test_cleanup(void);
2010-08-08 10:06:34 +02:00
2014-10-18 14:16:26 +02:00
struct terrain_type * test_create_terrain(const char * name, unsigned int flags);
struct race *test_create_race(const char *name);
struct region *test_create_region(int x, int y,
const struct terrain_type *terrain);
struct faction *test_create_faction(const struct race *rc);
struct unit *test_create_unit(struct faction *f, struct region *r);
void test_create_world(void);
struct building * test_create_building(struct region * r, const struct building_type * btype);
struct ship * test_create_ship(struct region * r, const struct ship_type * stype);
struct item_type * test_create_itemtype(const char * name);
struct ship_type *test_create_shiptype(const char * name);
struct building_type *test_create_buildingtype(const char *name);
void test_create_castorder(struct castorder *co, struct unit *u, int level, float force, int range);
2014-10-18 14:16:26 +02:00
int RunAllTests(void);
2014-12-17 19:53:19 +01:00
void test_translate_param(const struct locale *lang, param_t param, const char *text);
const char * test_get_messagetype(const struct message *msg);
struct message * test_find_messagetype(struct message_list *msgs, const char *name);
struct message * test_get_last_message(struct message_list *mlist);
2015-10-12 13:27:39 +02:00
void test_clear_messages(struct faction *f);
2010-08-08 10:06:34 +02:00
void disabled_test(void *suite, void (*)(struct CuTest *), const char *name);
#define DISABLE_TEST(SUITE, TEST) disabled_test(SUITE, TEST, #TEST)
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif