Writing Quality Tests - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T19:42:40Zhttp://stackoverflow.com/feeds/question/195856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/195856/writing-quality-tests7Writing Quality TestsOwen2008-10-12T19:02:20Z2008-10-14T16:08:29Z
<p>we know that code coverage is a poor metric to use when gauging the quality of test code. we also know that testing the language/framework is a waste of time. </p>
<p>on the other hand, what metrics can we use to identify quality tests? are there any best practices or rules of thumbs that you've learned to help you identify and write higher quality tests?</p>
http://stackoverflow.com/questions/195856/writing-quality-tests/195866#1958661Answer by Steven A. Lowe for Writing Quality TestsSteven A. Lowe2008-10-12T19:08:02Z2008-10-12T19:08:02Z<p>write tests that verify the base functionality and the individual use-cases of the software's intent. Then write tests to check edge cases and verify expected exceptions.</p>
<p>in other words, write good unit tests from a customer perspective, and forget about metrics for test code. no metrics will tell you if your test code is good, only functioning software tells you when your test code is good.</p>
http://stackoverflow.com/questions/195856/writing-quality-tests/195873#1958731Answer by friol for Writing Quality Testsfriol2008-10-12T19:14:15Z2008-10-12T19:14:15Z<p>My rules of thumb:</p>
<ol>
<li>Cover even simpler test cases in your test plan (don't risk leaving the most used functionality untested)</li>
<li>Trace the corresponding requirement near each test case</li>
<li>As <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">Joel</a> says, have a separate team that does testing</li>
</ol>
http://stackoverflow.com/questions/195856/writing-quality-tests/195884#1958841Answer by Mark Bessey for Writing Quality TestsMark Bessey2008-10-12T19:21:11Z2008-10-12T19:21:11Z<p>I'd disagree that code coverage isn't a useful metric. If you don't have 100% code coverage, that at least indicates areas that need more tests.</p>
<p>In general, though - once you get adequate statement coverage, the next logical place to go is in writing tests that are either designed to directly verify the requirements that the code was written to meet, or that are intended to stress the edge-cases. Neither of these will fall naturally out of anything you can easily measure directly.</p>
http://stackoverflow.com/questions/195856/writing-quality-tests/195914#1959143Answer by Chris Jefferson for Writing Quality TestsChris Jefferson2008-10-12T19:39:20Z2008-10-12T19:39:20Z<p>Make sure it's easy and quick to write tests. Then write lots of them.</p>
<p>I've found that it's very hard to predict in advance which tests will be the ones which end up failing either now, or a long way down the line. I tend to take a scatter-gun approach, trying to hit corner cases if I can think of them.</p>
<p>Also, don't be afraid of writing bigger tests which test a bunch of things together. Of course if that test fails it might take longer to figure out what went wrong, but often problems only arise once you start gluing things together.</p>
http://stackoverflow.com/questions/195856/writing-quality-tests/197332#1973328Answer by Patrick Cuff for Writing Quality TestsPatrick Cuff2008-10-13T11:53:29Z2008-10-13T11:53:29Z<ol>
<li>Make sure your tests are independent of each other. A test shouldn't depend on the execution or results of some other test.</li>
<li>Make sure each test has clearly defined entry criteria, test steps and exit criteria.</li>
<li>Set up a Requirements Verification Traceability Matrix (RVTM). Each test should verify one or more requirement.</li>
<li>Make sure your tests are identifiable. Establish a simple naming or labeling convention and stick to it. Reference the test indentifier when logging defects.</li>
<li>Treat your tests like you treat your code. Have a testware development process that mirrors your software development process. Tests should have peer reviews, be under version control, have change control procedures, etc.</li>
<li>Categorize and organize your tests. Make it easy to find and run a test, or suite of tests, as needed.</li>
<li>Make your tests as succinct as possible. This makes them easier to run, and automate. It's better to run lots of little tests than one large test.</li>
<li>When a test fails, make it easy to see <em>why</em> the test failed.</li>
</ol>
http://stackoverflow.com/questions/195856/writing-quality-tests/201813#2018131Answer by Chanakya for Writing Quality TestsChanakya2008-10-14T16:08:29Z2008-10-14T16:08:29Z<p>I think Use case prove very useful to get the best test coverage. If you have your functionality in terms of use case it be easily converted into different test scenarios to cover positive , negative and exceptions. The use case also states the prerequisites and data prep if any for the same which proves very handy while writing test cases.</p>