From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
use SPVM 'TestCase::Interface' ; use SPVM 'TestCase::InterfaceNoRequiredMethodTest' ; my $api = SPVM::api();
my $start_memory_blocks_count = $api ->get_memory_blocks_count();
{
ok(SPVM::TestCase::Interface->basic);
ok(SPVM::TestCase::Interface->interface_array);
ok(SPVM::TestCase::Interface->interface_muldim_array);
ok(SPVM::TestCase::Interface->can);
ok(SPVM::TestCase::InterfaceNoRequiredMethodTest->basic);
}
$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;
|