在学java基础时我们要想测试一些结果,大多数情况下都是在main方法中进行。但一个类中只能有一个main方法,这样会浪费时间和空间。这时我们可利用单元测试进行结果的测试。
public class TestD {
public static void main(String[] args) {
}
@Test
public void test(){
System.out.println("测试jar包导入");
}
@Test
public void test1(){
System.out.println("测试jar包导入");
}
@Test
public void test2(){
System.out.println("测试jar包导入");
}
}
1、下载Jar包
这两个jar包可以在中央仓库中下载
https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar 下载链接
https://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jarjunit jar包下载链接
2、导入到IDEA的JAVA项目中
效果:
我们就能进行单元测试了