• 作业8 单元测试练习


    [必做题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");
    }

    }

  • 相关阅读:
    墨西哥选美皇后涉毒被捕 丢失桂冠
    html中的超连接和鼠标事件
    用SSL安全协议实现WEB服务器的安全性
    PHP中的一些经验积累 一些小巧实用的函数
    博客特效之背景动画雨滴(转帖)
    smarty中section的使用
    程序员语录
    css常用属性
    10年软件开发教会我最重要的10件事[转]
    WP7中对ListBox的ItemTemplate中子元素的后台操作
  • 原文地址:https://www.cnblogs.com/yuanyupeng/p/5503510.html
Copyright © 2020-2023  润新知