Myeclipse中如何进行JUnit单元测试?(3)

发表于:2016-10-28来源:冷血之心的博客作者:冷血之心点击数: 标签:MyEclipse
testAddNum () {Test1 ts= new Test1();ts.addNum( 3 , 6 );} @After public void testm2 () {Test1 ts= new Test1();ts.method2();} @Ignore public void testm3 () {Test1 ts= new Test1();ts.method3();} @Before
testAddNum(){ Test1 ts=new Test1(); ts.addNum(3, 6); } @After public void testm2(){ Test1 ts=new Test1(); ts.method2(); } @Ignore public void testm3(){ Test1 ts=new Test1(); ts.method3(); } @Before public void testm4(){ Test1 ts=new Test1(); ts.method4(); } }

如何运行?

 

方法1:在测试方法类中,我们可以选中某个方法比如testm3,选择Run as ---->JUint Test

方法2:将整个测试类运行,选择Run as ---->JUint Test

结果如何?

如图出现绿条说明方法测试成功。

按照上边的代码,在Console中将出现如下结果:

即标有Ignore的测试方法没有被执行,Before和After方法分别在Test方法之前和之后执行了一次。

原文转自:http://blog.csdn.net/qq_25827845/article/details/52132596