what is boundary value analysis?
Answers were Sorted based on User's Feedback
Answer / sowmya
Boundary value focuses on input and output boundaries of a
given fucntion.it consists of developing test cases
Lower boundary
min-1,min
Upper boundary
max max+1
For example if we are checking for we are checking credit
limit between 10,000 and 15,000
the lower boundary will be
9,999 & 10,000
the upper boundary wil be
15,000 & 15,001
| Is This Answer Correct ? | 5 Yes | 1 No |
‘Boundary value analysis’ testing technique is used to identify errors at boundaries rather than finding those exist in center of input domain.
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 is a next part of Equivalence partitioning for designing test cases where test cases are selected at the edges of the equivalence classes.
Boundary value analysis is often called as a part of stress and negative testing.
TEST CASES:
1) Test cases with test data exactly as the input boundaries of input domain i.e. values 1 and 1000 in our case.
2) Test data with values just below the extreme edges of input domains i.e. values 0 and 999.
3) Test data with values just above the extreme edges of input domain i.e. values 2 and 1001.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sandeep gupta
In this technique, all the possible valid input and valid
output are identified.Test cases also include both valid
and invalid inputs.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ajay
it is an technique used to check the boundary values of an
application....
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / saiganpath
This tech used to find out the boundary values and its used
for minimal test cases to cover all the possibilities.
For an example,
User name should be allowed 6 <= 8 characters, here 6 and 8
is positive boundary values and 5 and 9 is the negative
boundary values.
So (6,8)(5,9) total 4 test data we have to prepare to find
boundary value analysis.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / mfsi_priyankaa
It is a black box technique, which is used to identify
errors at the boundaries i.e. n-1, n , n+1.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sanjana
Boundary values means selection of test cases/input data
which lies on boundary.
In Boundary values we check the limit condition of the
input data.
for number:- one valid two invalid
for range:- one valid two invalid
for set:- one valid one invalid
| Is This Answer Correct ? | 0 Yes | 3 No |
If we have 9 floor n 3 eggs n we have to check from which floor the egg wont get break.how can we do that
work break down structure in manual testing
Define the following and explain their usefulness: Change Management, Configuration Management, Version Control, and Defect Tracking.
specify another matrix/table used for same functionality as of tracibility matrix?
What is the difference between system testing and regression testing?
3 Answers Emergis, Hexaware, Mascon Global,
WHAT IS COMPATABILITY TESTING
what is test report?
which domain is of high demand for software testing, Right now i am working in Education domain .How about demand for Education domain and which companies are recruiting in education domain
In a systen design to work out the tax to be paid: An employee has Rs 4000 of salary tax free. the next Rs 1500 is taxed at 10% , the next Rs 28000 is taxed at 22% , any further amount is taxed at 40% , the nearest whole Rs, which of these is a valid boundary value analysis test case ???? a)Rs 1500 b)Rs 32001 c)Rs 33501 d) Rs 28000.
What is the difference between a test policy and test strategy? Need detailed answer with some highlights.
What is a Scenario Matrix's document?
Is there any testing named as Comprehensive testing