利用Junit、Hamcrest 和 Eclemma进行软件测试

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.

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.

 

1. Task 1

  右键点击project,选择properties,选择Java Bulid Path。选择Libraries,点击Add External JARs,找到Junit.jar以及hamcrest.jar包的路径,选中即可添加。

2. Task 2

  在Eclipse中选择Help,点击Install new softare,选择Eclemma的路径,进行安装。安装后重启Eclipse即可。

3. Task 3

  创建TiangleProblem类,用于判断输入的是否为三角形以及是哪种三角形。

  测试用例类如下

  点击运行按钮并选择Coverage as后,选择Junit测试,运行后结果如下

 

posted @ 2017-03-12 11:36  马亿  阅读(153)  评论(0编辑  收藏  举报