In a scenario where an API accepts a range of numeric inputs, how would you apply Equivalence Partitioning to test this effectively?

  • Test random values without considering the range
  • Test values at the lower and upper bounds of the range
  • Test values just outside the specified range
  • Test values just within the specified range
Equivalence Partitioning is a testing technique where input values are divided into different partitions, and testing is performed using representative values from each partition. In this scenario, testing at the lower and upper bounds ensures that the API handles edge cases effectively, helping to identify potential issues related to boundary conditions.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *