Tools
testing.txt
Associated article: Designing for Testability
Tags: Tools Design
Published source code accompanying the article by Fred Wild in which he discusses regression testing. Fred shows how Perl scripts can be use to automate the regression testing process. Also see TESTING.ZIP.
_Designing for Testability_
by Fred Wild
Listing One
/test
/suite
/bin
/common
/pre
/post
/input
/actuals
/ideals
Listing Two
$logSuffix = ".log";
$batSuffix = ".bat";
$scriptSuffix = ".bat";
$batExecCmd = "call";
Listing Three
$diffPgm = "diff&...


