Lab关于Junit和Eclemma
下载和安装
- Junit和Hamcrest可以去junit的github下载点击这里,然后在需要添加的项目右键built path->configure built path ->add external jars,添加下载好的Junit和Hamcrest的jar包即可。
- Eclemma安装,通过远程地址安装和下载zip解压到eclipse的安装文件夹dropins文件夹里面,具体参考这里
测试设计
- 编写三角形问题,注意输入3条边的长度需要满足三角形定义,才能进行下一步判断和输入的必选是整数值,否则抛出异常
package st; public class triangle { private boolean caculate(int a, int b, int c) { if(a+b>=c && a-b<=c) return true; else return false; } public Boolean isTriangle(int a, int b, int c) { boolean result = true; result = caculate(a, b, c); result = caculate(a, c, b); result = caculate(c, b, a); return result; } public boolean isEquilateral(int a, int b, int c) { if(isTriangle(a, b, c) == false) return false; if(a == b && b == c) return true; else return false; }
public boolean isIsosceles(int a, int b, int c) { if(isTriangle(a, b, c) == false) return false; if(a == b || b == c || a == c) return true; else return false; }
public boolean isScalene(int a, int b, int c) { if(!isEquilateral(a, b, c)&& !isIsosceles(a, b, c)) return true; else return false; } }
- 设计测试环节,可以右键new->junit test case自动生成,或者自己在建立一个文件夹然后新建立一个包包名和测试的类一致
package st; import static org.junit.Assert.*; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; public class JuintTest { private static triangle testTriangle = new triangle(); @Before //每次运行test都会执行该方法 public void setUp()throws Exception{
} @Test //测试案例 public void testIsEquilateral(){ assertEquals(true, testTriangle.isEquilateral(5, 5, 5)); } @Test public void testIsIsosceles(){ assertEquals(true, testTriangle.isIsosceles(5, 5, 5)); } @Test public void testIsScalene(){ assertEquals(true, testTriangle.isScalene(4, 5, 6)); } } 测试结果:
- 覆盖,当安装Eclemma后会在工具栏出现一个新的运行方式按钮,点击就可以查看覆盖效果。如下:
时间: 2024-10-16 15:16:46