1. 程式人生 > >在SpringBoot中使用測試

在SpringBoot中使用測試

第一步 在POM.XML配置,引入依賴

 

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>

第二步 建立測試類,一如兩個註解

@RunWith(SpringRunner.class)

@SpringBootTest //需要制定應用

public class SpringBootTests{}