需要引入:
import org.junit.Test;
使用时,只需要在方法上加上@Test
即可
import org.junit.Test;
public class Root {
@Test
public void test(){
System.out.println("使用测试接口类");
}
}
- 2
- 3
- 4
- 5
- 6
- 7
需要引入:
import org.junit.Test;
使用时,只需要在方法上加上@Test
即可
import org.junit.Test;
public class Root {
@Test
public void test(){
System.out.println("使用测试接口类");
}
}