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

第 52 章 SpringBootTest

目录

52.1. Maven 依赖
52.2. 测试类
52.2.1. Junit基本注解介绍
52.3.
52.3.1. Assert.assertEquals 判断相等
52.3.2. Assert.assertTrue
52.4. JPA 测试
52.5. TestRestTemplate
52.6. Controller单元测试
52.7. WebTestClient

52.1. Maven 依赖

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