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

 

 

 

二、测试示例

 

posted @ 2020-12-01 13:23  codedot  阅读(123)  评论(0编辑  收藏  举报