vote up 6 vote down star
5

We are currently preparing our testing department for a new release of our latest project. We would obviously like them to follow a thorough plan for testing our software and insuring that bugs are passed back to us (the development team) before release.

Are there any good tools or methodologies to follow in creating this test plan?

flag
3  
Voting to reopen. Building a test plan for a program is definitely programming related. – jsight Apr 29 at 16:36
Heh, much better question post-editing. – Shog9 Apr 29 at 16:59
And a much different question. – mmyers Apr 29 at 18:45
@jsight, good edit – Nathan Koop Apr 29 at 19:02

5 Answers

vote up 3 vote down

The best book I've found on the subject is Managing the Testing Process. The author goes into how to create a test plan.

In my experience, the basics of a test plan are as follows:

  • Feature Description
  • Assumptions
  • Related Documentation
  • Test Matrix
  • Valid tests
  • Invalid/Error Condition tests
  • State Tests (behavior is based on various states of the object/system)
  • Stress Tests
  • Performance Tests
  • Performance Metrics
  • Required tools
  • Environmental concerns (specific hardware, browser, OS, etc.)

If you can fill that out, the team should be able to carry out testing pretty well.

One decision you need to make is how capable is the test team? I prefer a test plan to be an algorithm to derive all of the test cases. Describe the sorts of cases, but not necessarily each case in detail. If the team is less competent, you may need to spell out each case specifically.

One final caution. Avoid the siren's call of being too detailed. A plan that cannot be kept in someone's head is not likely to be followed. If your test plan is 25 pages long, you probably wrote too much.

link|flag
Excellent last point, test plans should not be too detailed as the tester should explore around a bit at each step... – Alex Jul 31 at 15:03
vote up 2 vote down

And let's not forget, there will never be enough time to do all the testing you want to do. So the tests in your plan will need to be prioritized. I often find that prioritizing by risk is the best way to go.

However, usually a test plan would be developed by the QA group, in coordination with dev and PM. If QA is not creating the plan on their own, it sounds like your QA team could use an upgrade. At the very least, even if dev is putting together the initial plan, QA should provide some input, as they will have a different POV. The more eyes on the test plan, the more complete it will be.

link|flag
Absolutely, if the devs create the test plan, qa probably wont find any bugs because the devs probably know that stuff works or think about it as developing. QA should be doing this not a dev. – Alex Jul 31 at 15:02
Although, I should clarify that I am not saying you should avoid collaborating with dev on tests. I have had many good collaborative relationships with devs where we bounce test ideas off each other. Often the dev can point me in the direction of code he/she thinks is suspect/riskier and in need of more testing. – Tom E Jul 31 at 21:10
vote up 1 vote down

Try: Artifact: Test Plan

link|flag
vote up 0 vote down

Unit and integration testing should catch a lot of the problems at the code level, but they aren't great for testing how the system behaves from the user's point of view.

Once you know what a feature is supposed to do and how to know whether it works or not, automate that test (where it makes sense, obviously) using something like TestComplete, Smarty Script or something similar. These tests are easy to run, so there won't be any shortcuts in testing, and they will always run consistently.

link|flag
vote up 0 vote down

QA should absolutely be writing the test plan, as Tom E points out. They should engage with the customer to understand requirements and with the dev team to understand implementation, but at the end of the day the team with the testing mind set needs to own the test plan.

The only situation I can think of where a test plan might need to be written for a QA team is when you have an outsourced team doing QA who is not yet familiar with your product. In that case, I'd recommend having one or two senior members of the team colocate with you during design and development; it helps them come up to speed much faster and they can pass on that knowledge to the rest of the team.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.