spring boot做单元测试
程序员文章站
2022-04-29 16:38:25
...
1.配置maven依赖pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2.测试类
package com.xxxx.controller;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.xxxx.entity.xxxx;
import com.xxxx.service.xxxService;
@RunWith(SpringRunner.class)
@SpringBootTest
public class JunitTest1 {
@Autowired
private xxxService xxService;
@Test
public void doTest() {
xxxx x= new xxxx();
x.setName("单元测试");
xxService.insertxxxx(x);
}
}
单击右键运行Junit Test,Junit视图里可以看见运行结果,如果有错误,则查看Failure Trace里面的错误信息即可
推荐阅读
-
spring boot使用thymeleaf模板的方法详解
-
Spring Boot 使用WebAsyncTask异步返回结果
-
Spring Boot 2.0 设置网站默认首页的实现代码
-
spring boot与spring mvc的区别及功能介绍
-
Spring boot项目部署到云服务器小白教程详解
-
Spring Boot打包部署和环境配置详解
-
解决Intellij IDEA 使用Spring-boot-devTools无效的问题
-
3行代码快速实现Spring Boot Oauth2服务功能
-
Spring Boot容器加载时执行特定操作(推荐)
-
spring boot 本地图片不能加载(图片路径)的问题及解决方法