在Maven項目中使用JUnit的步驟如下:
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
創建JUnit測試類,命名規范為以Test結尾,如MyClassTest.java
。
在測試類中使用@Test
注解標注測試方法,如:
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class MyClassTest {
@Test
public void testAddition() {
MyClass obj = new MyClass();
int result = obj.add(2, 3);
assertEquals(5, result);
}
}
mvn test
Maven會自動運行測試類中所有使用@Test
注解標注的方法,并輸出測試結果。
注意:在使用JUnit時,測試類和測試方法必須使用public訪問修飾符。