I have a subroutine f1 in a Class
Package A;
use Carp;
sub new {
...
}
sub f1 {
my $param1 = shift;
my $param2 = shift;
my $param3 = shift;
croak '- parameter1 required' unless $param1;
if ((!$param2) && $param3 eq 'X') {
croak '- parameter2 required' ;
}
some code here;
}
I use Test::More to test this sub . Here is what i have used
use Test::More qw(no_plan);
my $n = 1;
BEGIN {
use_ok('A');
}
$n++;
my $a = new A;
isa_ok( $a,"A");
$n++;
eval {
$a->f1( ) };
print "ok $n";
print "\t\tno arguements passed\n";
if ( $@) {
diag ( "$@\n" );
}
$n++;
my question is When we do not pass parameter to the f1 then it must die,
I use eval to do this in the test script ,
Is this how i should test this function ) or is there any other option in Test::more (which is the best way)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.