Jtest的简单使用

Posted littlepage

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jtest的简单使用相关的知识,希望对你有一定的参考价值。

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的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

测试工具Jtest:用于代码优化和测试——《软件工程综合实践专题》第四次个人博客

Java自动化测试工具Parasoft Jtest案例分享

Java调用JNI

puptter自动化测试初探

XML解析之dom4j

jar包中使用log4j2不起作用