Spring Boot超简单的测试类demo
Posted 6b7b5fc3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot超简单的测试类demo相关的知识,希望对你有一定的参考价值。
1 概述
Spring Boot结合Junit的简单测试类demo,流程是先引入依赖,接着编写测试类测试运行即可。
2 依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
3 编写测试类
在test/java下编写测试类,默认带一个叫项目名+Tests的测试类:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@SpringBootTest
@RunWith(SpringRunner.class)
public class ApplicationTests {
@Test
public void contextLoads() {
System.out.println("--------------------------------------------------");
}
}
4 测试
点击方法或类左边的按钮或者Ctrl+Shift+F10进行测试。
以上是关于Spring Boot超简单的测试类demo的主要内容,如果未能解决你的问题,请参考以下文章