JUnit 4 + Spring Boot 测试依赖

1.pom导入依赖

复制代码
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>

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

2.在src同目录下创建test/java

3.编写测试类

复制代码
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 Test1 {

    @Test
    public void testSqlOutput() {
        System.out.println(111);
    }
}
相关推荐
q***51894 分钟前
Spring Boot中Tomcat配置
spring boot·tomcat·firefox
V***u4535 分钟前
【学术会议论文投稿】Spring Boot实战:零基础打造你的Web应用新纪元
前端·spring boot·后端
A***F15723 分钟前
SpringBoot(整合MyBatis + MyBatis-Plus + MyBatisX插件使用)
spring boot·tomcat·mybatis
l***466825 分钟前
SSM与Springboot是什么关系? -----区别与联系
java·spring boot·后端
e***09633 分钟前
MySQL-递归查询
数据库·windows·mysql
('-')35 分钟前
《从根上理解MySQL是怎样运行的》第十三章笔记
数据库·笔记·mysql
r***186437 分钟前
如何使用C#与SQL Server数据库进行交互
数据库·c#·交互
z***026040 分钟前
SpringBoot创建动态定时任务的几种方式
java·spring boot·spring
w***95491 小时前
VScode 开发 Springboot 程序
java·spring boot·后端
程序员皮皮林1 小时前
Redis:大数据中如何抗住2000W的QPS
大数据·数据库·redis