forked from github/server
re-enable disabled test.
This commit is contained in:
parent
01b7538ffd
commit
dd7b0e4db3
2 changed files with 6 additions and 6 deletions
|
@ -432,11 +432,6 @@ static int tolua_unit_effskill(lua_State * L)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct fctr_data {
|
|
||||||
unit *target;
|
|
||||||
int fhandle;
|
|
||||||
} fctr_data;
|
|
||||||
|
|
||||||
typedef struct event {
|
typedef struct event {
|
||||||
struct event_arg *args;
|
struct event_arg *args;
|
||||||
char *msg;
|
char *msg;
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#include "messages.h"
|
#include "messages.h"
|
||||||
|
|
||||||
#include "unit.h"
|
#include "unit.h"
|
||||||
|
#include "faction.h"
|
||||||
#include "order.h"
|
#include "order.h"
|
||||||
|
|
||||||
#include <CuTest.h>
|
#include <CuTest.h>
|
||||||
|
@ -25,10 +26,13 @@ void test_missing_message(CuTest *tc) {
|
||||||
|
|
||||||
void test_missing_feedback(CuTest *tc) {
|
void test_missing_feedback(CuTest *tc) {
|
||||||
message *msg;
|
message *msg;
|
||||||
|
unit *u;
|
||||||
|
|
||||||
test_setup();
|
test_setup();
|
||||||
|
u = test_create_unit(test_create_faction(NULL), test_create_region(0, 0, NULL));
|
||||||
|
u->thisorder = create_order(K_ENTERTAIN, u->faction->locale, NULL);
|
||||||
message_handle_missing(MESSAGE_MISSING_REPLACE);
|
message_handle_missing(MESSAGE_MISSING_REPLACE);
|
||||||
msg = msg_error(NULL, NULL, 77);
|
msg = msg_error(u, NULL, 77);
|
||||||
CuAssertPtrNotNull(tc, msg);
|
CuAssertPtrNotNull(tc, msg);
|
||||||
CuAssertPtrNotNull(tc, msg->type);
|
CuAssertPtrNotNull(tc, msg->type);
|
||||||
CuAssertStrEquals(tc, msg->type->name, "missing_feedback");
|
CuAssertStrEquals(tc, msg->type->name, "missing_feedback");
|
||||||
|
@ -113,6 +117,7 @@ static void test_noerror(CuTest *tc) {
|
||||||
CuSuite *get_messages_suite(void) {
|
CuSuite *get_messages_suite(void) {
|
||||||
CuSuite *suite = CuSuiteNew();
|
CuSuite *suite = CuSuiteNew();
|
||||||
SUITE_ADD_TEST(suite, test_missing_message);
|
SUITE_ADD_TEST(suite, test_missing_message);
|
||||||
|
SUITE_ADD_TEST(suite, test_missing_feedback);
|
||||||
SUITE_ADD_TEST(suite, test_merge_split);
|
SUITE_ADD_TEST(suite, test_merge_split);
|
||||||
SUITE_ADD_TEST(suite, test_message);
|
SUITE_ADD_TEST(suite, test_message);
|
||||||
SUITE_ADD_TEST(suite, test_noerror);
|
SUITE_ADD_TEST(suite, test_noerror);
|
||||||
|
|
Loading…
Reference in a new issue