diff options
Diffstat (limited to 'Examples/test-suite/perl5/ignore_parameter_runme.pl')
| -rwxr-xr-x | Examples/test-suite/perl5/ignore_parameter_runme.pl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Examples/test-suite/perl5/ignore_parameter_runme.pl b/Examples/test-suite/perl5/ignore_parameter_runme.pl new file mode 100755 index 0000000..8e75e0b --- /dev/null +++ b/Examples/test-suite/perl5/ignore_parameter_runme.pl @@ -0,0 +1,33 @@ +#!/usr/bin/perl +use strict; +use warnings; +use Test::More tests => 14; +BEGIN { use_ok('ignore_parameter') } +require_ok('ignore_parameter'); + +# adapted from ../java/ignore_parameter_runme.java + +# Runtime test checking the %typemap(ignore) macro + +# Compilation will ensure the number of arguments and type are correct. +# Then check the return value is the same as the value given to the ignored parameter. +is(ignore_parameter::jaguar(200, 0.0), "hello", "jaguar()"); +is(ignore_parameter::lotus("fast", 0.0), 101, "lotus()"); +is(ignore_parameter::tvr("fast", 200), 8.8, "tvr()"); +is(ignore_parameter::ferrari(), 101, "ferrari()"); + +my $sc = new ignore_parameter::SportsCars(); +is($sc->daimler(200, 0.0), "hello", "daimler()"); +is($sc->astonmartin("fast", 0.0), 101, "astonmartin()"); +is($sc->bugatti("fast", 200), 8.8, "bugatti()"); +is($sc->lamborghini(), 101, "lamborghini()"); + +# Check constructors are also generated correctly +my $mc = eval { new ignore_parameter::MiniCooper(200, 0.0) }; +isa_ok($mc, 'ignore_parameter::MiniCooper'); +my $mm = eval { new ignore_parameter::MorrisMinor("slow", 0.0) }; +isa_ok($mm, 'ignore_parameter::MorrisMinor'); +my $fa = eval { new ignore_parameter::FordAnglia("slow", 200) }; +isa_ok($fa, 'ignore_parameter::FordAnglia'); +my $aa = eval { new ignore_parameter::AustinAllegro() }; +isa_ok($aa, 'ignore_parameter::AustinAllegro'); |
