2016 Tianjin University Software Testing (lab1)

Tasks:
1.Install Junit(4.12), Hamcrest(1.3) with Eclipse
2.Install Eclemma with Eclipse
3.Write a java program for the triangle problem and test the program with Junit.
a)Description of triangle problem:
Function triangle takes three integers a,b,c which are length of triangle sides; calculates whether the triangle is equilateral, isosceles, or scalene.

the steps:
1.open eclipse and create a new java project named triangleProblem
2.create a new java working set named test
3.create a new package named triangleProblem in each java working set
4.create a new java class in src and a new JUnit test case in test
5.find properties and then choose java build path, choose add external jars to import Junit(4.12) and Hamcrest(1.3)
6.find eclipse marketplace to install Eclemma online
7.now i can code my test project

the result screenshots:
I have tested 4 cases and all have passed!

原文地址:https://www.cnblogs.com/ida-xj/p/5292313.html