Boundary value analysis - NextensArelB/SwaggerGenerationTool GitHub Wiki
##What is Boundary Testing? Boundary testing is the process of testing between extreme ends or boundaries between partitions of the input values.
So these extreme ends like Start- End, Lower- Upper, Maximum-Minimum, Just Inside-Just Outside values are called boundary values and the testing is called “boundary testing”. The basic idea in normal boundary value testing is to select input variable values at their: In case of minimum values
- Minimum [positive case]
- Just above the minimum [positive case]
- Just below the minimum [negative case]
In case of maximum values
- Just below the maximum [positive case]
- Maximum [positive case]
- Just above the maximum [negative case]
Example: length must be higher or equal to 120 cm
##To be used when testing:
- Functional test on US level: API, calculations, XBRL, validations and conditions