zoukankan      html  css  js  c++  java
  • Jutil 单元测试

    eclipse 自身集成了jtuil,右击项目,点击bulidpath,addjar,如下所示添加jutil

                                           

                                            

    新建一个Junit的测试类用来测试上面的测试方法,新增Junit的测试类方法如下:

                                      

    // 被测试案例
    package hazardsource;
    
    public class testcase {
        public void hello() {
            System.out.println("hello");
            System.out.println("Hello");
        }
        
        public void print() {
            System.out.println("helwe f");
        }
    
    }
    // 测试案例
    package test;
    
    import static org.junit.Assert.*;
    
    import org.junit.Test;
    
    import hazardsource.testcase;
    
    public class TTest {
    
        @Test
        public void test() {
            testcase a = new testcase();
            a.hello();
        }
        
        @Test
        public void test2() {
            testcase a = new testcase();
            a.print();
        }
        
    
    }

    注意: 创建jutil.test.case 之后,类的名字以及方法名字都可以进行修改

    上面使用的eclipse自己携带的,来进行测试的,网上说可以通过自己导入jutil相关的包之后,再进行相关操作

     (一个渣渣的救赎之路)

  • 相关阅读:
    event.currentTarget
    architecture 20190628
    jQuery extend
    Prototype js library
    this._super()
    cdn for js library
    WAMPSERVER php
    characteristics of competent communicators
    onchange and oninput
    jQuery .ready()
  • 原文地址:https://www.cnblogs.com/helloqiufei/p/11095549.html
Copyright © 2011-2022 走看看