博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot 使用JUnit 单元测试
阅读量:2490 次
发布时间:2019-05-11

本文共 1815 字,大约阅读时间需要 6 分钟。

在IDEA中打开要测试的类,使用ctrl + shift + T 新建一个测试类,选择要测试的方法

package cn.edu.shu.ces_chenjie.service;import cn.edu.shu.ces_chenjie.pojo.Person;import org.junit.Assert;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;@RunWith(SpringRunner.class)@SpringBootTestpublic class PersonServiceTest {    @Autowired    private PersonService personService;    @Test    public void insertTwo() throws Exception {    }    @Test    public void getAge() throws Exception {    }    @Test    public void getOne() throws Exception {        Person person = personService.getOne(1);        Assert.assertEquals(new Integer(1),person.getId());    }}

如何测试Rest接口?

package cn.edu.shu.ces_chenjie.controller;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.test.web.servlet.MockMvc;import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;import org.springframework.test.web.servlet.result.MockMvcResultMatchers;import static org.junit.Assert.*;@RunWith(SpringRunner.class)@SpringBootTest@AutoConfigureMockMvcpublic class PersonControllerTest {    @Autowired    private MockMvc mockMvc;    @Test    public void personList() throws Exception {        mockMvc.perform(MockMvcRequestBuilders.get("/persons"))                .andExpect(MockMvcResultMatchers.status().isOk());    }}

使用mvn clean package构建项目时会自动运行所有单元测试,如果想跳过,则在其后加上 -Dmaven .test.skip=true

转载地址:http://wkqrb.baihongyu.com/

你可能感兴趣的文章
Beginning Auto Layout Tutorial
查看>>
block使用小结、在arc中使用block、如何防止循环引用
查看>>
iPhone开发学习笔记002——Xib设计UITableViewCell然后动态加载
查看>>
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
常浏览的博客和网站
查看>>
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
查看>>
iOS在Xcode6中怎么创建OC category文件
查看>>
5、JavaWeb学习之基础篇—标签(自定义&JSTL)
查看>>
8、JavaWEB学习之基础篇—文件上传&下载
查看>>
reRender属性的使用
查看>>
href="javascript:void(0)"
查看>>
h:panelGrid、h:panelGroup标签学习
查看>>
f:facet标签 的用法
查看>>
<h:panelgroup>相当于span元素
查看>>
java中append()的方法
查看>>
必学高级SQL语句
查看>>