springboot单元测试配置

SpringBoot进行单元测试

需要的依赖

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-test</artifactId>
	<scope>test</scope>
	<exclusions>
		<exclusion>
			<groupId>org.junit.vintage</groupId>
			<artifactId>junit-vintage-engine</artifactId>
		</exclusion>
	</exclusions>
</dependency>
<dependency>
	<groupId>junit</groupId>
	<artifactId>junit</artifactId>
	<scope>test</scope>
</dependency>			

创建测试类

@RunWith(SpringRunner.class)
@SpringBootTest(classes = BookApplication.class)
public class MyTest{
      @Test
      public void test(){}

}

猜你喜欢

转载自www.cnblogs.com/yjp372928571/p/12978800.html