You are on page 1of 2

Question 4

Create test cases using one equivalence partitioning and one BVA technique
for your project. Screenshot the interface you are referring to and include it
in your submission in teams.
Equivalence Partitioning
Username Field:
Valid Inputs:
- Only can use email (Valid)
Invalid Inputs:
- In addition to e-mails such as phone numbers (Invalid)
Password Field:
Valid Inputs:
- Password must contain at least 8 characters including at least 1 number (Valid)
- 8-15 characters and 1 number (Valid)
Invalid Inputs:
- Password with less than 8 characters (Invalid)
- Password with more than 12 characters and no number (Invalid)

Boundary Value Analysis (BVA):


Username Field:
Test Cases:
- Username with phone number (Boundary case - Invalid)
- Username with email (Boundary case - Valid)
- Username with nickname (Boundary case - Invalid)
Password Field:
Test Cases:
- Password with 2 characters (Boundary case - Invalid)
- Password 8 characters and at least 1 number (Boundary case - Valid)
- Password with 10 characters and 1 number (Boundary case - Valid)
- Password with 11 characters and no number (Boundary case - Invalid)

You might also like