
- Forum
- Testing
- Software Testing
- Explain Equivalance Partitioning and Boundary Value Analysis
Explain Equivalance Partitioning and Boundary Value Analysis
This is a discussion on Explain Equivalance Partitioning and Boundary Value Analysis within the Software Testing forums, part of the Testing category; Hi All, I would like to know about the following. 1. Boundary Value Analysis 2. Equivalance Partitioning 3.Statement Coverage 4. ...
-
02-15-2007, 09:26 AM #1
- Join Date
- Dec 2005
- Answers
- 2
Explain Equivalance Partitioning and Boundary Value Analysis
Hi All,
I would like to know about the following.
1. Boundary Value Analysis
2. Equivalance Partitioning
3.Statement Coverage
4. Branch Coverage.
if possible plz explain with examples.
Thanks in advance
venkatesh
-
02-16-2007, 01:55 AM #2
- Join Date
- Feb 2007
- Location
- Chennai
- Answers
- 84
Equivalence class:
For each piece of the specification, generate one or more equivalence class.
Label the classes as “ valid or in valid”.
Generate one test case for each in valid equivalence class.
Generate a test case that covers as much possible equivalence class.
Boundary Value Analysis:
Generate test cases for the boundary values
Minimum value, minimum value +1, minimum value –1
Maximum value, maximum +1, maximum –1
Error Guessing:
Generate test cases against to the specification.
Structural testing is done for
Statement coverage
Branch Coverage
Path coverage

Reply With Quote





