Thursday, November 26, 2009

Boundary Value Analysis

It’s widely recognized that input values at the extreme ends of input domain cause more errors in system. More application errors occur at the boundaries of input domain. ‘Boundary value analysis’ testing technique is used to identify errors at boundaries rather than finding those exist in center of input domain. Boundary value analysis is a next part of Equivalence partitioning for designing test cases where test cases are selected at the edges of the equivalence classes.

Example 1:
Test cases for input box accepting numbers between 1 and 1000 using Boundary value analysis:

a) Test cases with test data exactly as the input boundaries of input domain i.e. values 1 and 1000 in our case.

b) Test data with values just below the extreme edges of input domains i.e. values 0 and 999.

c) Test data with values just above the extreme edges of input domain i.e. values 2 and 1001.

No comments: