In: Computer Science
The Classic Triangle Testing Problem, (Myer's Triangle): A program reads three integer values. The three values are interpreted as representing the lengths of the sides of a triangle. The program prints a message that states whether the triangle is scalene, isosceles, or equilateral. Develop a set of test cases (at least 6 ) that you feel will adequately test this program. (This is a classic testing problem and you could find numerous explanations about it on the internet. I would recommend that you try to submit your own answer, based on your understanding of the topic)
Please answer as soon as possible. I have no time.
Software Engineering 1.
Below are the test cases on which the program should give the specified results.
S.No. Values Result
1 2, 3, 4 Scalene
2 12, 12, 12 Equilateral
3 3, 4, 5 Scalene
4 24, 24, 25 Isosceles
5 2, 2, 3 Isosceles
6 3, 3, 3 Equilateral