Knowledge organisersTesting
Normal, boundary, erroneous.
There are three types of test data: normal (typical valid input), boundary (at the edge of valid ranges), and erroneous (invalid input that should be rejected).
age = 25)age = 0, age = 120)age = -5, age = "abc")# Normal: 25, 50, 80
# Boundary: 0, 1, 119, 120
# Erroneous: -1, 121, "hello", 3.5