如何添加junit框架:

右键项目-->build path-->add libraries --->选择junit,然后就可以使用了

测试的方法必须是空参的,没有返回值的方法。


public class TestJunit {
    @Before
     public void testBefore(){
         System.out.println("before");
     }
     @After
     public void testAfter(){
         System.out.println("after");
     } 
    @Test
     public void test1(){
         System.out.println("aa");
         m1();//test的方法可以直接调用别的方法。
     }
     public void m1(){
         System.out.println("m1 method");
     }
 
}

@Before注解的方法会在每个@Test方法前执行,@after注解的方法会在每个@Testd方法后执行。