首页 > 其他 > 详细

Jtest的简单使用

时间:2018-08-26 10:19:01      阅读:173      评论:0      收藏:0      [点我收藏+]

Jtest主要用于快速测试自己的代码是否正确

条件,导入相应的Jtest包

    @Test
    public void test() {
        System.out.println("hello junit");
    }
    @Before
    public void testbefore() {
        System.out.println("hello before");
    }
    @After
    public void testafter() {
        System.out.println("hello after");
    }

 

运行结果先后为,before test after 三个都依次运行

 

Jtest的简单使用

原文:https://www.cnblogs.com/littlepage/p/9536144.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!