在IDEA中用JUnit的做测试

来源:3-3 JUnit运行流程

AndyHT

2015-04-04 22:18

为什么在IDEA中用JUnit做测试没有tearDownAfterClass这些方法呢?只有两个before() 和 after()方法

/** 
* Play Tester. 
* 
* @author <Authors name> 
* @since <pre>Apr 4, 2015</pre> 
* @version 1.0 
*/ 
public class PlayTest {

@Before
public void before() throws Exception {
    System.out.println("Before");
} 

@After
public void after() throws Exception {
    System.out.println("After");
} 

/** 
* 
* Method: play(String a) 
* 
*/ 
@Test
public void testPlay() throws Exception { 
    System.out.println("test play");
} 

/** 
* 
* Method: add(int a, int b) 
* 
*/ 
@Test
public void testAdd() throws Exception { 
    System.out.println("test add");
}

/** 
* 
* Method: divide(Double a, Double b) 
* 
*/ 
@Test
public void testDivide() throws Exception { 
    System.out.println("test divide");
}


}


写回答 关注

1回答

  • AndyHT
    2015-04-04 22:23:47

    知道了~原来都要自己写。。。。

JUnit—Java单元测试必备工具

Java单元测试利器,提升Java代码质量,工作效率不用愁

77960 学习 · 93 问题

查看课程

相似问题