Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 27 章 SpringBootTest

目录

27.1. Maven 依赖
27.2. 测试类
27.2.1. Junit基本注解介绍
27.3.
27.3.1. Assert.assertEquals 判断相等
27.3.2. Assert.assertTrue
27.4. JPA 测试
27.5. TestRestTemplate
27.6. Controller单元测试
27.7. WebTestClient

27.1. Maven 依赖

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