What is Boundary Value Analysis

BVA is similar to Equivalence Partitioning but focuses on "corner cases" or values that are usually out of range as defined by the specification. It means that if a function expects all values in range of negative 100 to positive 1000, test inputs would include negative 101 and positive 1001.

Showing Answers 1 - 4 of 4 Answers

suman Pradhan

  • Sep 29th, 2005
 

the answer  posted does nt seem to be complete

  Was this answer useful?  Yes

Shivacharan.D

  • Dec 13th, 2005
 

BVA(Boundary Value Analysis) is a technique to find whether our applicaton is taking required range of values and rejecting the values which fall out of range where as ECP(Equivalence class partition)  is to check whether given input value is valid or invalid.Both this concepts come under Input Domain Coverage of Functionality Testing.

Example:whether User id textbox accepts alphanumerics of length 4 to 10 characters.

BVA: max value:10  pass;

        max-1: 9  pass;

        max+1=11 fail;min=4 pass;min+1=5 pass;min-1=3 fail;

In this way we check corner values and conclude whether our appln is taking correct range of values.

  Was this answer useful?  Yes

sudhakar2068

  • Sep 14th, 2006
 

Boundary Value Analysis: In boundary value analysis, test cases are generated using the extremes of the input domaini, e.g. maximum, minimum, just inside/outside boundaries, typical values, and error values. BVA is similar to Equivalence Partitioning but focuses on "corner cases".

sudhakar kolla.

If you have doubts can ask me.

My Email:kollasudhakar2005@yahoo.co.in.

My Number:09819859346.

  Was this answer useful?  Yes

Sujatars

  • Mar 20th, 2007
 

Boundary value Analysis is a technique in which test data is chosen from the boundaries or inputs or output data structure ,Choices often include the actual minimum & maximum bounday values ,the maximum values plus or minus one and mininmum value plus or minus one.

  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