What is Boundary Testing

Test which focus on the boundary or limit conditions of the software being tested. (Some of these tests are stress tests).

Showing Answers 1 - 8 of 8 Answers

dhana

  • Oct 7th, 2005
 

we use this for test data selection.it contains values at boundaries,values just inside the boundaries,values just outside the boundaries,critical values.

  Was this answer useful?  Yes

sudhakar2068

  • Sep 14th, 2006
 

Boundary Testing: Test which focus on the boundary or limit conditions of the software being tested. (Some of these tests are stress tests).

sudhakar kolla.

If you have doubts can ask me.

My Email:kollasudhakar2005@yahoo.co.in.

My Number:09819859346.

  Was this answer useful?  Yes

hari

  • Jan 16th, 2007
 

Test data is taken based on the consideration on input and out put boundries of the values

  Was this answer useful?  Yes

Sujatars

  • Mar 20th, 2007
 

This technique consist of developing test data that focuses on input and output boudaries of a given function.

  Was this answer useful?  Yes

A testing technique that consists of developing test cases and data that focus on the input and output boundaries of a given function.It is a BlackBox testing technique.

  Was this answer useful?  Yes

sarega99

  • Jul 19th, 2010
 

Boundary Testing means just what it says,testing the boundaries.

eg. Say you are testing a particular input field where you enter Date for a particular functionality which says dates should be accepted only until Jan 1,2011 through Jan 31,2011. So you wil be testing that the input field should be accepting only the dates in between.Your testing would involve that the particular field does not accept dates after Jan 31,2011 and prior to Jan 1,2011 and should accept all the dates in between and the start and the end date(ofcourse looking at the functional documents)

  Was this answer useful?  Yes

J-P

  • Aug 7th, 2014
 

I agree with Sarega99s response. Questions like this one are better answered with a real world, or practical example. In fact, effective boundary testing will focus on both inner boundaries (e.g., 01/01/2011 - 01/31/2011) and external boundaries (i.e., Date < 01/01/2011 and > 01/31/2011).

Another example: If you have a pay level and a salary range for that level, say the minimum salary is $1,000.00 and the max salary is $3,550.99 bi-weekly, you have [1,000.00 , 3,550.99]. While you test values between $1,000.00 and $3,550.99 (valid salaries entries), youll also text outer boundaries, i.e., your scripts will verify that no salary outside of the above boundaries is entered. Thus any salary <1,000.00 or >$3,550.99 will trigger an exception.

  Was this answer useful?  Yes

chandra

  • Sep 16th, 2014
 

Boundary Testing, the name is defining its meaning. Testing both the acceptable and unacceptable values for both inner and outer boundary values.
For eg., a user need to enter his age, that is limited to 20 and 30, the boundary testing includes:
19,21 - inner boundaries
29,31 - outer boundaries.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions