forked from github/server
test that smoking volcanoes stop smoking
This commit is contained in:
parent
4bdc9a5153
commit
61929ab2d2
|
@ -1,11 +1,21 @@
|
||||||
|
#include <platform.h>
|
||||||
#include <tests.h>
|
#include <tests.h>
|
||||||
#include "volcano.h"
|
#include "volcano.h"
|
||||||
|
|
||||||
|
#include <kernel/region.h>
|
||||||
|
#include <kernel/terrain.h>
|
||||||
#include <CuTest.h>
|
#include <CuTest.h>
|
||||||
|
|
||||||
static void test_volcano_update(CuTest *tc) {
|
static void test_volcano_update(CuTest *tc) {
|
||||||
|
region *r;
|
||||||
|
const struct terrain_type *t_volcano, *t_active;
|
||||||
|
|
||||||
|
t_volcano = test_create_terrain("volcano", LAND_REGION);
|
||||||
|
t_active = test_create_terrain("activevolcano", LAND_REGION);
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
|
r = test_create_region(0, 0, t_active);
|
||||||
volcano_update();
|
volcano_update();
|
||||||
|
CuAssertPtrEquals(tc, (void *)t_volcano, (void *)r->terrain);
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue