Equivalence Partitioning Tutorial
Definition of Equivalence Partitioning Equivalence Partitioning is a black-box testing technique (basic test-design technique) that splits the input domain into classes of data. From this data, we can derive test cases. Test-case design with the help of equivalence partitioning technique has two steps: 1) Identifying the equivalence classes. 2) Defining the test cases. Example 1 of Equivalence Partitioning Problem:- The program reads three integer values from an input dialog. The three values represent the lengths of the sides of a triangle. The program displays a message that states whether the triangle is scalene, isosceles, or equilateral. Remember that a scalene…