forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_test.cpp
27 lines (24 loc) · 813 Bytes
/
map_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "catch/catch.hpp"
#include "game.h"
#include "map.h"
#include "player.h"
#include "map_helpers.h"
TEST_CASE( "destroy_grabbed_furniture" )
{
clear_map();
GIVEN( "Furniture grabbed by the player" ) {
tripoint test_origin( 60, 60, 0 );
g->u.setpos( test_origin );
tripoint grab_point = test_origin + tripoint( 1, 0, 0 );
g->m.furn_set( grab_point, furn_id( "f_chair" ) );
g->u.grab_type = OBJECT_FURNITURE;
g->u.grab_point = grab_point;
WHEN( "The furniture grabbed by the player is destroyed" ) {
g->m.destroy( grab_point );
THEN( "The player's grab is released" ) {
CHECK( g->u.grab_type == OBJECT_NONE );
CHECK( g->u.grab_point == tripoint_zero );
}
}
}
}