I'm new to the automated testing game. I'm actually enjoying learning something new and useful that will make enhancements/ bug fixes down the line easier. I hate introducing a bug when fixing another .... and not discovering it until the client calls complaining.

But I think I'm going overboard. I have a set of data classes, one of which has a function that requires 2 arguments. Let's say:

my $foo = My::Object->new(); my $hashref = $foo->getDetails( PARAM_ONE => 1234, PARAM_TWO => 4321 ) +;
where My::Object actually tests for the existence of each required parameter, and  croak()s if one of them is missing.

Test::More doesn't seem to have a method for testing this, unless I'm missing something. There's like and  unlike, and  is and  isn't, but i don't see a  not_ok.

So, I wonder if I'm getting a bit overzealous because I'm digging testing. Is the "missing" subroutine an indication that nobody else bothers to test for such conditions? Or just an oversight by the module author? (Yes, I know the author is milling around here.)


In reply to too much testing? by geektron

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.