junit3和junit4的区别

junit3:

①必须引入junit.framwork.TestCase

②必须继承TestCase

③测试方法必须以test开头

④每个测试方法前自动调用setUp()方法,结束后调用tearDown()方法

 

junit4:

①必须引入org.junit.Test  ,  org.junit.Assert.*

②不用继承TestCase

③测试方法前要有@Test标记

④每个测试方法前自动调用以@Before标记的方法,结束后调用@After标记的方法

⑤如果用@BeforeClass和@AfterClass标记的方法是在类的开始和结束时执行,只执行一次。

⑥可以通过下面的写法测试异常了

       @Test(expected = ArithmeticException.class)
       public void divideByZero(){
                int n = 2 / 0;
        }

你可能感兴趣的:(junit3和junit4的区别)