当前位置:网站首页>【笔记】单测调用本地接口
【笔记】单测调用本地接口
2022-08-07 00:20:00 【阿小冰】
@GetMapping("/test-api")
public String testApi() {
return "单测调用本地接口成功!";
}@Slf4j
@SpringBootTest
@RunWith(SpringRunner.class)
public class ApplicationTest {
@Autowired
private WebApplicationContext webApplicationContext;
@Test
void contextLoads() throws Exception {
// 初始化 MockMvc
MockMvc mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
// 调用获取 /test-api 接口
String test= mockMvc.perform(MockMvcRequestBuilders.get("/test-api")
.accept(MediaType.TEXT_HTML))
.andReturn()
.getResponse().getContentAsString();
System.out.println(test);
}
}边栏推荐
猜你喜欢

leetcode 20. 有效的括号

osg中NDC坐标转换为世界坐标

Contrastive Learning Model Cheat Sheet (1)

C51 基本函数、中断函数和库函数的详解

阿帽的新画

2022 Electrician (Elementary) Special Work Certificate Exam Question Bank and Mock Exam

CV领域经典backbone模型小抄(2)

2022危险化学品经营单位安全管理人员考试题模拟考试题库及模拟考试

Flutter APNS device token not set before retrieving FCM Token for Sender ID

月薪8万炫富后续来了,金融业“限薪令”重磅出击
随机推荐
Usage and simulation implementation of library functions such as strcmp, strstr, memcpy, and memmove
Distillation Learning Framework Cheat Sheet (1)
Is it reliable to buy stocks with great wisdom?is it safe?
NAT穿越技术详细介绍
缓存系列:缓存一致性问题的解决思路
【使用JDBC获取数据库相关的元数据信息】
Understanding the Graph Attention Mechanism
Ftrace function graph简介
WPF双滑块控件以及强制捕获鼠标事件焦点
2022 Hazardous Chemicals Business Unit Safety Management Personnel Exam Questions Mock Exam Question Bank and Mock Exam
【Redis】Redis学习——五大基本数据类型
2022年P气瓶充装考试试题及答案
对比学习模型小抄(1)
【随机数排序】
公共关系学试题及答案
Understanding of union union (continued from the previous article data type float)
jvm总结
数学英语题目理解模型记录(1)
Public Relations and Interpersonal Skills
今天是新的一天