Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: What is the largest number of tests you have created for a single project you have worked on?

by Tux (Canon)
on Jun 01, 2010 at 10:59 UTC ( [id://842580]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Test::More;
    is (1, 1, "test 1");
    is (2, 2, "test 2");
    is (3, 3, "test 3");
    done_testing ();
    
  2. or download this
    use Test::More;
    is ($_, $_, "test $_") for 1 .. 3;
    done_testing ();
    
  3. or download this
    foreach my $nl ("", "\n", "\r", "\r\n") {
        ok ($object->send ($text.$nl), "send");
        is ($object->receive (), $text, "receive text without line ending"
    +);
        }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://842580]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-24 08:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found