use
SPVM
'TestCase::Statement::If'
;
my
$api
= SPVM::api();
my
$start_memory_blocks_count
=
$api
->get_memory_blocks_count();
{
ok(SPVM::TestCase::Statement::If->condition_types());
ok(SPVM::TestCase::Statement::If->condition_true());
ok(SPVM::TestCase::Statement::If->condition_false());
ok(SPVM::TestCase::Statement::If->elsif_condition_true());
ok(SPVM::TestCase::Statement::If->elsif_condition_false());
ok(SPVM::TestCase::Statement::If->elsif_only());
ok(SPVM::TestCase::Statement::If->else_only());
ok(SPVM::TestCase::Statement::If->condition_my());
}
$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;