User Rachel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:36:31Zhttp://stackoverflow.com/feeds/user/13138http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32229/when-do-you-stop-testing/96529#965290Answer by Rachel for When do you stop testing?Rachel2008-09-18T20:26:33Z2008-09-18T20:26:33Z<p>Measuring the amount of testing time put into the product between "showstopper" or major functionality bugs can let you know that you're nearly there. At times of rapid flux in the product with new functionality going in, it's common for a testing team to be finding that most of the bugs they're reporting are serious functionality bugs. As those get dealt with, there's often a large quantity of minor, fit and finish type issues aimed at improving the smoothness and clarity of the interaction; in aggregate they make a great difference in product quality but each one is not terribly important. As those get fixed and testing continues, you probably continue to get bug reports as testers push into error cases and unusual usage patterns. At that point it depends on when you see the business value of releasing versus the risk of undetected showstoppers. </p>
http://stackoverflow.com/questions/74908/how-do-you-integrate-system-testing-into-an-agile-process4How do you integrate system testing into an agile process? Rachel2008-09-16T17:38:57Z2008-09-18T18:16:46Z
<p>The classic descriptions of agile development have releasable code at the end of an iteration. If there is further testing and validation that has to happen to create a releasable product, how do you integrate that into the process? </p>
http://stackoverflow.com/questions/76408/which-of-these-scripting-languages-is-more-appropriate-for-pen-testing/76508#765081Answer by Rachel for Which of these scripting languages is more appropriate for pen-testing?Rachel2008-09-16T20:20:05Z2008-09-16T20:20:05Z<p>If you're looking for a scripting language that will play well with Java, you might want to look at Groovy. It has the flexibility and power of Perl (closures, built in regexes, associative arrays on every corner) but you can access Java code from it thus you have access to a huge number of libraries, and in particular the rest of the system you're developing. </p>
http://stackoverflow.com/questions/74908/how-do-you-integrate-system-testing-into-an-agile-process/75241#75241Comment by Rachel on How do you integrate system testing into an agile process? Rachel2008-09-18T14:41:30Z2008-09-18T14:41:30ZI worked with a release process that required a long stress test of a high-reliability product. The stress tests included very large volumes of data and multiple overlapping error conditions. The stress test would run for several days. That was the sort of "further testing" I was thinking of.