forked from github/server
d15684a546
move turn global to calendar. promote calendar module to kernel.
31 lines
662 B
C
31 lines
662 B
C
#include <platform.h>
|
|
|
|
#include "summary.h"
|
|
#include "kernel/calendar.h"
|
|
|
|
#include <CuTest.h>
|
|
#include "tests.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
static void test_summary(CuTest * tc)
|
|
{
|
|
struct summary *sum;
|
|
test_setup();
|
|
test_create_faction(NULL);
|
|
test_create_faction(NULL);
|
|
sum = make_summary();
|
|
report_summary(sum, true);
|
|
CuAssertIntEquals(tc, 0, remove("parteien.full"));
|
|
CuAssertIntEquals(tc, 0, remove("datum"));
|
|
CuAssertIntEquals(tc, 0, remove("turn"));
|
|
free_summary(sum);
|
|
test_teardown();
|
|
}
|
|
|
|
CuSuite *get_summary_suite(void)
|
|
{
|
|
CuSuite *suite = CuSuiteNew();
|
|
SUITE_ADD_TEST(suite, test_summary);
|
|
return suite;
|
|
}
|