Black Box Testing
Prime Numbers Testing Problemβ
π Storyβ
BUGA is working on his stone computer.
His task? To test a function that checks if a number is prime!
But... there's a big problem β BUGA has no idea what a prime number is, let alone how to test one!
π± Help him through this journey as he learns about equivalence partitioning, boundary value analysis, and unit testing.
Letβs guide BUGA step by step on how to properly test his function! ππ₯
π Step 1: Understanding the Problemβ
β BUGA's Dilemma:β
"Me need to testβ¦ PRIME? But what PRIME? Me only know fire and rocks!" π₯πͺ¨
Before BUGA can test anything, he needs to understand:
- What is a prime number?
- What does the function take as input?
- What does it return as output?
- What are the pre and post conditions of the function?
π Task: Define the function specificationβ
Help BUGA by filling in this table:
Aspect | Description |
---|---|
Function Name | isPrime |
Input | ? |
Preconditions | ? |
Output | ? |
Postconditions | ? |
βοΈ Fill in the missing parts to help BUGA understand the function!
π Step 2: Splitting Inputs into Equivalence Classesβ
β BUGA's Dilemma:β
"Too many numbers!! Some prime, some no-prime. Me brain hurt! How split them?!" π€―
Instead of testing infinite numbers, letβs group them into categories using Equivalence Partitioning.
π Task: Fill in the Equivalence Partitioning Tableβ
Equivalence Class | Example Inputs | Expected Output | Notes |
---|---|---|---|
β E1: Valid Prime Numbers | 2, 3, 5, 7, 11, ... | true | |
β E2: Non-Prime Natural Numbers | ... | ? | |
β ... | ... | ... |
βοΈ Complete the missing parts so BUGA can test smarter, not harder!
π Step 3: Finding the Tricky Edge Casesβ
β BUGA's Dilemma:β
"Bugsβ¦ always hide in corners. Like saber-tooth cats in cave! Me must check dangerous edges." π¦·π¨
BUGA needs to test Boundary Valuesβthe critical numbers where bugs might appear.
π Task: Fill in the Boundary Value Analysis Tableβ
Boundary Condition | Test Input | Expected Output | Reasoning |
---|---|---|---|
E1 Lower boundary - 1 | 1 | false | the lower bound of E1 -1 |
E1 Lower boundary | 2 | true | the bound of E1 |
E1 Lower boundary + 1 | 3 | true | the upper bound of E1 |
... | ... | ... | ... |
βοΈ Help BUGA complete this table to catch tricky edge cases!
π Step 4: Writing Unit Tests in JUnitβ
β BUGA's Dilemma:β
"Me must write tests in Java?!" πͺ¨π»
Now that BUGA understands what to test, he needs to write JUnit tests.
π Task: Write the JUnit test casesβ
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
@Tag("BBT")
class PrimeTest {
@Test
void testPrimeNumbersE1() {
// TODO: Implement test for equivalence partition 1
// given
// when
// then
}
@Test
void testPrimeNumbersBvaE1() {
// TODO: Implement test for boundary values of equivalence partition 1
// given
// when
// then
}
...
}
βοΈ Help BUGA write the unit tests for all the identified EP and BVAs!
Congratulations! You have successfully helped BUGA become a Black Box Testing Master! π
π Now go forth and test like a cavemanβ¦ but smarter! π¦΄π»π₯