SpringBoot单元测试

spring-boot-starter-test提供了很多注解用于测试,接下来我们就一一介绍。

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

一、相关注解说明

@SpringBootTest

@WebMvcTest

@WebServiceClientTest

@RestClientTest
@TestComponent
@TestConfiguration
@TestConstructor
@TestExecutionListeners

@TestPropertySource

@DataJdbcTest

@DataJpaTest

@DataLdapTest

@DataMongoTest

@DataRedisTest

@JdbcTest

@JsonTest

@AutoConfigureXxx

二、测试示例

原文地址:https://www.cnblogs.com/myitnews/p/14067480.html