spring boot1.5.6 测试类1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot1.5.6 测试类1相关的知识,希望对你有一定的参考价值。

package com.example.demo;

import org.junit.Before;
import org.junit.Test; 
import org.junit.runner.RunWith; 
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType; 
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.MockMvcResultHandlers;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import org.springframework.test.web.servlet.setup.MockMvcBuilders; 
import com.example.demo.controller.HelloWorldController;

@RunWith(SpringRunner.class)
@SpringBootTest
public class HelloWorldControlerTests {
     private MockMvc mvc;
        @Before
        public void setUp() throws Exception {
            mvc = MockMvcBuilders.standaloneSetup(new HelloWorldController()).build();
        }
        @Test
        public void getHello() throws Exception {
        mvc.perform(MockMvcRequestBuilders.get("/sayHello").accept(MediaType.APPLICATION_JSON))
                    .andExpect(MockMvcResultMatchers.status().isOk())
                    .andDo(MockMvcResultHandlers.print())
                    .andReturn();
        }
        
        
}

































以上是关于spring boot1.5.6 测试类1的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot超简单的测试类demo

Spring Boot 1.5.4:在单元测试中排除配置类

Spring 在测试期间从包私有类获取配置

跨junit测试类重用spring应用程序上下文

为啥在测试类中设置的 spring.profiles.active 在实际测试类的环境属性中不可用?

如何使用spring集成测试按顺序运行控制器测试类