1.仅利用Junit测试
pom中添加Junit依赖,当前最新版本4.12。
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
Junit官网地址:http://junit.org/junit4/ ,目前普遍使用的是Junit4,下一代Junit5也发布了先导版本,有兴趣可以自行了解。
编写待测试类Caculate.java
package com.loongshawn.task;
public class Caculate {
public int plus(int a,int b){
return a + b;
}
public int minus(int a,int b){
return a - b;
}
}
在Test包下编写测试类:
package com.loongshawn;
import com.loongshawn.task.Caculate;
import org.junit.Test;