java spring项目的controller层的代码怎么用junit写单元测试用例 100

javaspring项目的controller层的代码怎么用junit写单元测试用例。我用百度的方法不知道为什么进不去项目,不知道怎么搞,一运行就是说是一个空测试。... java spring项目的controller层的代码怎么用junit写单元测试用例。我用百度的方法不知道为什么进不去项目,不知道怎么搞,一运行就是说是一个空测试。 展开
 我来答
帐号已注销
2019-04-30
知道答主
回答量:10
采纳率:0%
帮助的人:7008
展开全部

springboot与Junit有整合的方式,你可以模拟http请求从你的测试类发送请求到Controller,就像https://www.youyanpai.com/2018/springboot-test-with-junit4.html中描述的一样。下面我列出部分代码:

package com.youyanpai;
import org.junit.Assert;
import org.junit.Before;
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 org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;

@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class SimpleTest {

private MockMvc mockMvc;
    @Autowired
     private WebApplicationContext webApplicationContext;
    /**
 * 前置处理
 * @author 有言派
 * @author www.youyanpai.com
 */
@Before
    public void before() throws Exception {
        mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
    }
/**
 * 测试方法
 * @author 有言派
 * @author www.youyanpai.com
 */
@Test
    public void testYourMethod() throws Exception {
        MvcResult mvcResult = mockMvc.perform(MockMvcRequestBuilders.get("/login")
           .param("username", "youyanpai.com")
           .param("password", "youyanpai.com")
           .session(session))
           .andReturn();                
       int status = mvcResult.getResponse().getStatus();
      String responseString = mvcResult.getResponse().getContentAsString();                //请求是否正确
      Assert.assertEquals("请求错误", 200, status);                
      //输出返回值
      System.out.println("有言派提示您,测试返回结果:"+responseString);
    }
}

希望能够帮到你!

燎墩吹栽BB
2018-07-19 · 超过101用户采纳过TA的回答
知道小有建树答主
回答量:140
采纳率:88%
帮助的人:61.2万
展开全部

Spring项目controller 是依赖springmvc的

直接启动测试,是没有初始化spring容器(web.xml中初始化)的

如果是dao层 service层的测试可以用单元测试,controller层建议还是 启动web项目吧

补充一下Java WEB开发基础知识

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
abcd6559402
2018-07-19 · TA获得超过2052个赞
知道小有建树答主
回答量:1883
采纳率:62%
帮助的人:198万
展开全部
使用spring test加Mockito框架。需要添加第三方jar包
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式