软件测试lab1

软件测试第一次实验

实验要求:

  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. 

心得:

本次试验,我使用的编辑器不是Eclipse,而是intelliJ IDEA,在Junit和Hamcrest的配置方面与Eclipse有所不同,但是整体而言大同小异,

由于是一次小型作业,本次试验没有采用maven的方式引入两个包,而是直接下载的jar包,然后引入到项目中。

对于Eclemma,貌似idea不支持这个插件,我使用的是idea自带的代码覆盖工具来测试我代码的覆盖率。结果如图:

原文地址:https://www.cnblogs.com/JDwu/p/8644516.html