10 lines
499 B
Markdown
10 lines
499 B
Markdown
# Pairwise Testing — Password × Confirm Password × Age combinations
|
||
|
||
| TC ID | Password | Confirm password | Age | Expected result |
|
||
|---|---|---|---|---|
|
||
| TC-12 | `Secret12` | `Secret12` | 25 | Success |
|
||
| TC-13 | `Secret12` | `secret12` | 25 | Error "passwords do not match" |
|
||
| TC-14 | `abc` (short, no digit) | `abc` | 25 | Password error |
|
||
| TC-15 | `Secret12` | `Secret12` | 17 | Age error |
|
||
| TC-16 | `abc123` (6 chars) | `abc123` | 25 | Error (per the "min 8 characters" requirement) |
|