[必做题1] 针对附录1给出的三角形判断Java 代码,应用等价类划分法设计测试用例。用表格形式列出设计的测试用例,写到博客中。
序号 | 测试输入 | 测试预言 |
1 | 3 3 3 | Regular |
2 | 3 4 5 | Scalene |
3 | 1 2 3 | Illegal |
4 | 3 3 4 | Isoceles |
必做题2] 模仿附录2给出的三角形判断Junit测试代码,设计单元测试脚本,测试 [必做题1]设计得到的测试用例。注意测试脚本中测试用例出现顺序与[必做题1]表格所列顺序一致。运行所得的测试脚本,截运行结果图,写到博客中,同时将源代码commit到你自己的github。
测试结果图:
[必做题3] 心得体会。写下本次练习你收获的知识点
答:本次的Junit测试,自己还是并不太会用,还是自己最后问问同学和慢慢在网上摸索得出的结果。
注:gitgub提交总是显示有错误,无法提交。开始以为是学校网的原因,后来改4G也不行,总是在最后一步出错。源程序先放在这里:
import static org.junit.Assert.*;
import org.junit.Test;
public class TestTriangle {
@Test
public void testIsTriangle1(){
Triangle t = new Triangle(3,3,3);
assertEquals(t.getType(t),"Regular");
}
@Test
public void testIsTriangle2(){
Triangle t = new Triangle(3,4,5);
assertEquals(t.getType(t),"Scalene");
}
@Test
public void testIsTriangle3(){
Triangle t = new Triangle(1,2,3);
assertEquals(t.getType(t),"Illegal");
}
@Test
public void testIsTriangle4(){
Triangle t = new Triangle(3,3,4);
assertEquals(t.getType(t),"Isoceles");
}
}