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