The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
|
use SPVM 'TestCase::Operator::ArrayLength' ; my $api = SPVM::api();
my $start_memory_blocks_count = $api ->get_memory_blocks_count();
{
ok(SPVM::TestCase::Operator::ArrayLength->array_length_atmark());
ok(SPVM::TestCase::Operator::ArrayLength->array_length_atmark_brace());
ok(SPVM::TestCase::Operator::ArrayLength->array_length_scalar_atmark());
ok(SPVM::TestCase::Operator::ArrayLength->array_length_scalar_atmark_brace());
ok(SPVM::TestCase::Operator::ArrayLength->array_length_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;
|