Test Data Flashcards
Normal Data
Is a valid data that the code would expect to accept.
Extreme Data
Also valid data, but the data used is at the boundary of what should be accepted.
Invalid(errorneous) Data
Is data that the code should not accept.
Validation
A check to make sure data is sensible and possible.
Verification
A check to see if the data entered is correct.
Validation check types:
Range check Presence check Type check Look up Length check Format check
Range check
Data entered must be numerical data in a range.
Presence check
Makes sure that a field has data entered in it.
Type check
Only a certain type of data can be entered.
Look up
Providing a user with a drop-down list to select data.
Length check
Data entered has to a certain number of characters.
Format check
Specifics that data entered has to confirm a specific format.
Verification methods:
- double entry
- twin entry
- proofreading
Double entry
The user enters the data twice.
Twin entry
Two users enter the same data separately.