Triangle Test Case Exercise

Create a set of test data for the program—data the program must handle correctly to be considered a successful program.

Here's a description of the program:

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 triangle is one where no two sides are equal, whereas an isosceles triangle has two equal sides, and an equilateral triangle has three sides of equal length.

Moreover, the angles opposite the 2 equal sides in an isosceles triangle also are equal (it also follows that the sides opposite equal angles in a triangle are equal), and all angles in an equilateral triangle are equal.

Enter your test cases, one per line, in the format: side1,side2,side3

For example, an input would lool like: 1,1,1

Bonus Question: For each test case, did you specify the expected results?