如何在springboot中进行单元测试

网友投稿 728 2022-09-02

如何在springboot中进行单元测试

如何在springboot中进行单元测试

示例代码:

import static org.hamcrest.Matchers.equalTo;import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;@RunWith(SpringRunner.class)@WebAppConfiguration@SpringBootTestpublic class DemoApplicationTests { private MockMvc mvc; @Before public void setUp() throws Exception{ mvc = MockMvcBuilders.standaloneSetup(new HelloController()).build(); } @Test public void contextLoads() throws Exception{ mvc.perform(MockMvcRequestBuilders.get("/hello").accept(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()) .andExpect(content().string(equalTo("Hello"))); }}

不要忘记上面的import 静态引用

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:[IOS]tableview---delete按钮颜色改变以及事件
下一篇:PHP 数组和字符串互相转换实现方法(php是什么意思)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~