This commit is contained in:
2026-08-30 17:52:55 +03:00
parent e66723efb9
commit 4450517226
33 changed files with 997 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Boundary Value Analysis — "Age" field
| TC ID | Input value | Expected result | Boundary category |
|---|---|---|---|
| TC-01 | 17 | Error "must be between 18 and 99" | Below lower boundary |
| TC-02 | 18 | Form accepted | Lower boundary |
| TC-03 | 19 | Form accepted | Just above lower boundary |
| TC-04 | 99 | Form accepted | Upper boundary |
| TC-05 | 100 | Error "must be between 18 and 99" | Above upper boundary |
| TC-06 | 0, -5 | Error | Invalid values |