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
|
#include "cata_catch.h"
#include "calendar.h"
#include "inventory.h"
#include "item.h"
#include "pocket_type.h"
#include "ret_val.h"
#include "type_id.h"
static const itype_id itype_water( "water" );
TEST_CASE( "visitable_summation" )
{
inventory test_inv;
item bottle_of_water( "bottle_plastic", calendar::turn );
item water_in_bottle( "water", calendar::turn );
water_in_bottle.charges = bottle_of_water.get_remaining_capacity_for_liquid( water_in_bottle );
bottle_of_water.put_in( water_in_bottle, pocket_type::CONTAINER );
test_inv.add_item( bottle_of_water );
const item unlimited_water( "water", calendar::turn_zero, item::INFINITE_CHARGES );
test_inv.add_item( unlimited_water );
CHECK( test_inv.charges_of( itype_water, item::INFINITE_CHARGES ) > 1 );
}
|