zoukankan      html  css  js  c++  java
  • spring boot1.5.6 测试类

    package com.qutaoyao.demo.web;

    import com.qutaoyao.demo.web.controller.HelloController;
    import org.junit.Before;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    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.RequestBuilder;
    import org.springframework.test.web.servlet.setup.MockMvcBuilders;

    import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
    import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
    import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;


    @RunWith(SpringRunner.class)
    @SpringBootTest
    public class HelloControllerTests {

    private MockMvc mvc;

    @Before
    public void init(){
    this.mvc = MockMvcBuilders.standaloneSetup(new HelloController()).build();
    }

    @Test
    public void sayHi() throws Exception{
    RequestBuilder req = get("/hello/hi");

    mvc.perform(req).andExpect(status().isOk()).andExpect(content().string("Hello World!."));
    }
    }
  • 相关阅读:
    IDEA快捷方式
    JVM调优总结
    log4g详细配置
    大前端完整学习路线(详解)
    Tomcat工作原理
    Oracle
    Servlet知识
    lmap
    常见博客API
    PL/SQL入门理解(一)
  • 原文地址:https://www.cnblogs.com/faunjoe88/p/7724288.html
Copyright © 2011-2022 走看看