```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
```
### junit4
```java
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MyApplicationTests {
// 在這裡撰寫測試方法
@Test
public void testAddition() {
int result = 1 + 2;
assertEquals(3, result);
}
}
```
### junit5
```java
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import static org.junit.jupiter.api.Assertions.assertEquals;
@SpringBootTest
public class MyUnitTest {
@Autowired
private MyService myService;
@Test
void testMyService() {
String result = myService.doSomething();
assertEquals("expectedResult", result);
}
// 添加其他測試方法
}
```