Print Page | Close Window

Test case design

Printed From: One Stop Testing
Category: Software Testing @ OneStopTesting
Forum Name: Test Cases @ OneStopTesting
Forum Discription: You must be well versed in writting Good Test Cases as they only will decide whether you can catch most of bugs or not.
URL: http://forum.onestoptesting.com/forum_posts.asp?TID=6572
Printed Date: 28Apr2024 at 1:56pm


Topic: Test case design
Posted By: Mithi25
Subject: Test case design
Date Posted: 07Jul2009 at 11:46pm
Star


A test case
is a detailed procedure that fully tests a feature or an aspect of a feature.
 Whereas the test plan describes what to test, a test case describes how to
 perform a particular test. You need to develop a test case for each test
listed in the test plan. Figure 2.10 illustrates the point at which test
case design occurs in the lab development and testing proces.


A test case includes:

    * The purpose of the test.

    * Special hardware requirements, such as a modem.

    * Special software requirements, such as a tool.

    * Specific setup or configuration requirements.

    * A description of how to perform the test.

    * The expected results or success criteria for the test.



Test cases should be written by a team member who understands the function
 or technology being tested, and each test case should be submitted for peer
 review.

Organizations take a variety of approaches to documenting test cases; these
range from developing detailed, recipe-like steps to writing general
descriptions. In detailed test cases, the steps describe exactly how to
perform the test. In descriptive test cases, the tester decides at the time
 of the test how to perform the test and what data to use.
Most organizations prefer detailed test cases because determining pass or fail criteria is usually easier with this type of case. In addition, detailed test cases are reproducible and are easier to automate than descriptive test cases. This is particularly important if you plan to compare the results of tests over time, such as when you are optimizing configurations. Detailed test cases are more time-consuming to develop and maintain. On the other hand, test cases that are open to interpretation are not repeatable and can require debugging, consuming time that would be better spent on testing.

Test Case Design

Test Case ID:
It is unique number given to test case in order to be identified.

Test description:
The description if test case you are going to test.

Revision history:
Each test case has to have its revision history in order to know when and by
 whom it is created or modified.

Function to be tested:
The name of function to be tested.

Environment:
It tells in which environment you are testing.

Test Setup:
Anything you need to set up outside of your application for example printers,
 network and so on.

Test Execution:
It is detailed description of every step of execution.

Expected Results:
The description of what you expect the function to do.

Actual Results:
pass / failed

If pass - What actually happen when you run the test.

If failed - put in description of what you've observed




-------------
http://www.quick2sms.com - Send Unlimited FREE SMS to Any Mobile Anywhere in INDIA,
Click Here



Replies:
Posted By: tossy
Date Posted: 20Jul2009 at 12:57am
As I know test case design varies according to the tester and situation.

-------------



Posted By: cool7575
Date Posted: 30Jul2009 at 3:21am
Good article.

http://softwareqatestings.com/ - Software Testing



Posted By: JustinH
Date Posted: 22Sep2009 at 2:00am
... and don't forget test case generators such as the free one at http://www.hexawise.com/users/new - http://www.hexawise.com

Test case generators have been proven to both (a) save the time spent on documenting the test cases and (b) improve test execution efficiency (e.g., number of defects found per hour).

See, e.g., http://hexawise.wordpress.com/2009/09/18/efficient-and-effective-test-design/ - http://hexawise.wordpress.com/2009/09/18/efficient-and-effective-test-design/

Also see: http://www.combinatorialtesting.com/clear-introductions-1%20 - http://www.combinatorialtesting.com/clear-introductions-1

- Justin



-------------
- Justin
___________________________
Founder and CEO of Hexawise
www.hexawise.com
"More coverage. Fewer tests."



Print Page | Close Window