Help for this page

Select Code to Download


  1. or download this
    eval {
        $a->f1( ) 
    };
    ok($@, '... an exception has been thrown');
    like($@, qr/\- parameter1 required/, '... and it is the correct except
    +ion');
    
  2. or download this
    eval {
        $a->f1("paramter" ) 
    };
    ok(!$@, '... no exception has been thrown');