use
SPVM
'TestCase::Operator::Concat'
;
my
$api
= SPVM::api();
my
$start_memory_blocks_count
=
$api
->get_memory_blocks_count();
{
ok(SPVM::TestCase::Operator::Concat->concat_empty_string);
ok(SPVM::TestCase::Operator::Concat->concat_string);
ok(SPVM::TestCase::Operator::Concat->concat_left_is_number);
ok(SPVM::TestCase::Operator::Concat->concat_right_is_number);
}
{
ok(SPVM::TestCase::Operator::Concat->concat_left_is_undef);
ok(SPVM::TestCase::Operator::Concat->concat_right_is_undef);
}
$api
->set_exception(
undef
);
my
$end_memory_blocks_count
=
$api
->get_memory_blocks_count();
is(
$end_memory_blocks_count
,
$start_memory_blocks_count
);
done_testing;