Give examples of boundary value and equivalence
partitioning test cases.

Answer Posted / lakshmanaraj bg

There are common mistakes that programmers make is that errors tend to cluster around boundaries.

For example, if a program should accept a sequence of numbers between 1 and 10,
the most likely fault will be that values just outside this range are incorrectly accepted or that values just inside the range are incorrectly rejected.

In the programming world these faults coincide with particular programming structures such as the number
of times a program loop is executed or the exact point
at which a loop should stop executing.

This works well with our equivalence partitioning idea because partitions must have boundaries.

A partition of integers between 1 and 99, for instance, has a lowest value, 1, and a highest value, 99.

These are called boundary values. Actually they are called valid boundary values because they are the boundaries on the inside of a valid partition.

What about the values on the outside? Yes, they have boundaries too.

So the boundary of the non-valid values at the lower end will be zero because it is the first value you come to when you step outside the partition at the bottom end.

At the top end of the range we also have a non-valid boundary value, 100.

This is the boundary value technique, more or less.

For most practical purposes the boundary value analysis technique needs to identify just two values at each boundary.

For reasons that need not detain us here there is an alternative version of the technique that uses three values at each boundary.

For this variant, which is the one documented in BS 7925-2, we include one more value at each boundary when we use boundary value analysis:
the rule is that we use the boundary value itself and one value either side of the boundary.

So, in this case lower boundary values will be 0, 1, 2 and upper boundary values will be 98, 99, 100.

What does ‘as close as we can get’ mean? It means take the next value in sequence using the precision that has been applied to the partition.

If the numbers are to a precision of 0.01, for example, the lower boundary values would be 0.99, 1.00, 1.01 and the upper boundary values would be 98.99, 99.00, and 99.01.

some example of Boundary Values:

1) The boiling point of water:
The boundary is at 100 degrees Celsius, so for the 3 Value Boundary approach the boundary values will be 99 degrees,
100 degrees, 101 degrees—unless you have a very accurate digital thermometer, in which case they could be 99.9 degrees, 100.0 degrees, 100.1 degrees.

For the 2 value approach the corresponding values would be 100 and 101.

2) Exam pass:
If an exam has a pass boundary at 40 per cent, merit at 60 per cent and distinction at 80 per cent the 3 value boundaries would be 39, 40, 41 for pass, 59, 60, 61 for merit, 79, 80, 81 for distinction.

It is unlikely that marks would be recorded at any greater precision than whole numbers.

he 2 value equivalents would be 39 and 40, 59 and 60, and 79 and 80 respectively.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the table contents in testplans and test cases?

598


What is cross browser testing?

604


Define the key challenges faced during software testing?

594


Diffrence b/w compiled module and shared repository?

1580


What are the challenges you faced related to production environment bug?

1392






What is branch testing?

622


How would you prepare the test plan without srs?

608


Write the differences between preventive and reactive approaches?

626


What is difference between test effectiveness and test efficiency?

559


How can you introduce new software qa processes to an existing organization?

539


Scenario :- when we test payment module in the eCommerce site, then how do we verify or actually check transaction failed and the amount will be returned in next few days? i am using pay pal / credit card.

913


What are the test artifacts involved in qa?

702


Describe the benefits of agile testing.

598


Why regression testing is important?

635


I have to write a User Story for a customer withdrawing cash out of an ATM. Can you send me some examples PLEASE. I appreciate your assistance.

1449