SpringBoot单元测试demo
Posted pxblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot单元测试demo相关的知识,希望对你有一定的参考价值。
引入maven
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
单元测试类
DemoApplicationTests.java
package com.example.demo; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class DemoApplicationTests { @Test public void test(){ System.out.println("单元测试------"); } }
点击下方按钮启动
以上是关于SpringBoot单元测试demo的主要内容,如果未能解决你的问题,请参考以下文章