spurl would it be possible for you to clarify your question a bit? Are you asking about:

ATPG?
Which I still think is a hardware only term (pattern - referring to pattern of voltages to pins AFAIK). If you're come across it used as a term to describe software testing any references would be appreciated
Generating tests algorithmically?
Which is a well accepted technique. Take a look at the number tests in Regexp::Common for some examples. You need a way of generating possible values and a mechanism (sometimes called an "oracle") that lets you know whether the test should pass or not.
Having automatic rather than manual tests?
In which case you should take a look at Test::Tutorial, Test::More and friends in the Perl world.

If you want to learn more about software testing in general I'd recommend Kent Beck's Test Driven Development and Cem Kaner & James Bach's Lessons Learned in Software Testing: a Context-driven Approach.


In reply to Re: Automatic Test Pattern Generation in Perl by adrianh
in thread Automatic Test Pattern Generation in Perl by spurperl

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.