Explain Boundary condition in software testing.

 solution:-

Boundary Condition: 

1. Boundary condition testing test the application for valid data in the boundary and invalid data outside the boundary. 

2. Ex. If you are testing for an input box accepting numbers from 1 to 1000 then there is no need to write thousand test cases for all 1000 data input numbers. 

3. Boundary conditions in this example checks whether the input box accepts the number in the range of 1 to 1000 and rejects the number less than 1 and greater than 1000. 

In the example, test cases can be written for: 

1. Test data exactly as the input boundaries of input domain i.e., values 1 & 1000 in this case. 

2. Test data with values below the extreme edges of input domain i.e. values 0 and 999. 

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

Comments

Popular posts from this blog

State the functions of Hub, Repeater, Bridge and Router.

Describe the OSI model with neat diagram.

Explain Database languages.