The easiest explanation you could find on the web.
Both are black box testing techniques. Let’s start with an explanation of the Equivalence Partitioning technique.
✅Equivalence Partitioning
The steps should be as follows:
- Divide the test conditions into groups or sets of partitions. All the elements under the same set of partitions are considered the same, and the system should handle them equivalently.
- A partition containing valid values is called a valid partition
- A partition containing invalid values is called an invalid partition
For example, non-numeric example :
- If the fruits = apple, then print green
- If the fruits = orange, then print the orange
In the above example, Apple and Orange are valid partitions, while no invalid partition is specified; we assumed other fruits are invalid partitions.
For example, numeric example :
- Users should be able to register when they are between ages 1 and 21
In the above example, an age between 1 and 21 is a valid partition(able to register), while an age less than 1 and more than 21 is an invalid partition(unable to register).
2. When there are multiple sets of partitions or more than one input,
- The valid partition shall combined.
- The invalid partition should be tested individually.
Let’s take this as an example; the requirement is to register a user email with it hits the requirements below:
- It should be 6–30 characters long
- Should be alphanumeric
Following the No. 2 rules, we don't need to create 6 test cases for 3 partitions belonging to (6–30 characters long) and 2 partitions belonging to (should be alphanumeric).
We shall combine the valid partition and come out with the test value (input) of
then test the invalid partition individually,
In this example, 4 test cases are sufficient to test out all the combinations of partitions.
The question may arise: why don't we combine the invalid partition?
For example, we can combine less than 6 characters and not alphanumeric as one test,
If we test the invalid partition of <6 characters, the error message “Sorry, your username must be between 6 and 30 characters long”
However, when we test the invalid partition of <6 characters and the invalid partition of not alphanumeric, the error message “Sorry, only letters (a-z), numbers (0–9), and periods (.) are allowed.”
It’s clear that when we combine two invalid partitions to test, it’s very easy to miss out on validating an invalid partition of <6 characters. In this case, the tests are not well designed.
✅ Boundary Value Analysis
Boundary value analysis is related to equivalence partitioning. We can determine the boundary value by knowing the partition.
We will use back the same numeric example :
- Users should be able to register when they are between ages 1 and 21
And we know that
- age between 1 and 21 is a valid partition(able to register),
- age less than 1 and more than 21 is an invalid partition(unable to register).
To determine what is the boundary values:
- The first rule of thumb of BVA is that the minimum and maximum values of the partition are called the partition's boundary values.
Hence, boundary values of 1 to 21 — — 1 and 21
Next, we can further determine its boundary value using the 2-value BVA or 3-value BVA method.
To find out what is the 2 value BVA,
2. This boundary value and its closest neighbor belonging to the adjacent partition
Boundary values of 1 to 21 — — 1 and 21
(adjacent partition) Boundary values of 1 to 21 — — 0 and 22
Hence, the 2-value boundary value of 1 to 21 is — — 0, 1, 21, 22
To find out what is the 3 value BVA,
3. This boundary values and both its neighbors.
Boundary values of 1 to 21 — — 1 and 21
(adjacent partition) Boundary values of 1 to 21 — — 0 and 22
boundary values and both its neighbors of 1 to 21 — — 0, 1, 2, 20, 21, 22
boundary values and both its neighbors of 0 and 22 — — -1, 0, 1, 21, 22, 23
Hence, the 3 value BVA is -1, 0, 1, 2, 20, 21, 22, 23
Now, you may wonder another question: when should we use 2-value BVA or 3-value BVA?
Let’s recap the requirements:
- Users should be able to register when they are between ages 1 and 21
And somehow, developers make this mistake in the logic to be able to register when 1 ≤ age = 21.
We may have overlooked and missed this bug because a 2-value BVA only tests 21; however, a 3-value BVA may be able to surface the issue because the value of 20 is tested.
Thank you!
Ensure you follow me on LinkedIn or Medium to get notified about it!
✅ Related Articles:
- “From REST to GraphQL” — Wait, GraphQL? SQL? Are they the same?
- Cloud Computing, let’s talk about it [Part 2]
- AWS! The terms you must know 🤫
- ISTQB 🧙🏻♀️The software testing Myth, do you need that?
- Why is software testing needed in the first place?
- What is Agile Methodology?
- Java 101 for software testing (Using fruits and Vehicle as examples)
- What do you need to know to test using Selenium in Java? (that I wished somebody had told me)
- “Understand what Docker is in 5 minutes: Challenged Accepted”
- Black Box or White Box Testing? (How many boxes do you need ?)
✅ ☎️👇🏻
Or connect with me on LinkedIn to discuss this further!