一、junit 和hamcrest在eclipse中的安装
只需要把junit和hamcrest相应的jar包加入classpath中即可。具体步骤如下:
1.下载junit和hamcrest的jar包
2.按照下面的顺序添加:点击鼠标右键->Build Path-> Configue build path ->Libraries ->Add Exteral Jar ->选择jar包
->Ok,即可完成对junit的安装配置
二、Eclemma的安装
在线安装:
步骤:help->install new software ->add ->在地址栏输入http://update.eclemma.org/,输入名字 ->add->选择搜索出来的EclEmma->一直next ->下载成功 ,重启eclipse
三、测试isEquilateral(),isIsosceles(),isScalene()的测试用例以及结果
isEquilateral()的测试用例:
return Arrays.asList(new Object[][]{
{1,1,2,false},
{2,3,5,false},
{1,1,1,true},
{2,2,8,false},
{-1,-1,-1,false}
});
测试结果:
成功
isIsosceles()测试用例:
public static Collection<Object[]> getData(){
return Arrays.asList(new Object[][]{
{1,1,2,false},
{2,3,5,false},
{1,1,1,true},
{2,2,8,false},
{2,3,2,true}
});
}
测试结果:
成功
isScalene()的测试用例:
public static Collection<Object[]> getData(){
return Arrays.asList(new Object[][]{
{1,1,2,false},
{2,3,5,false},
{1,1,1,false},
{2,2,8,false},
{3,4,5,true}
});
测试结果:
成功
软件测试 junit、hamcrest、eclemma的安装和使用
原文:http://www.cnblogs.com/cenjat/p/5294817.html