SpringBoot——单元测试(二)

结合上面提到的 Spring Boot 启动器知识,Spring Boot 已经为我们提供了丰富的第三方框架,测试框架也不例外。

导入单元测试依赖。

1
2
3
4
5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

测试类:

1
2
3
4
5
6
7
8
9
10
11
@SpringBootTest
@RunWith(SpringRunner.class)
class HelloControllerTest {
@Autowired
private HelloController helloController;

@Test
public void contextLoads(){
System.out.println(helloController.index());
}
}
文章目录
|