spring boot 测试类

Posted 毛会懂

tags:

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

 

import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.serializer.SerializerFeature;

 

@SpringBootTest
@RunWith(SpringRunner.class)
public class UserAddressTest {
private static final Logger LOG = LoggerFactory.getLogger(UserAddressTest.class);

//@Autowired
//private IUserAddressService addressService;


@Test
public void findAddress() {
// String userCode = "aa3ff3af-7ad2-4957-af6d-8822bd53b026";
// Result result = addressService.selectUserAddress(userCode);
// LOG.info("返回的结果是:{}",result);
// LOG.info("结果数据格式化后是:{}",JSON.toJSONString(result,SerializerFeature.PrettyFormat,SerializerFeature.WriteMapNullValue));
}
}























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

spring boot 测试类

如何在 Spring Boot 中将属性注入测试类?

Spring Boot 自动装配配置类进入 Junit 测试

spring boot1.5.6 测试类1

spring boot1.5.6 测试类

在 Spring Boot 测试类上使用 @WebMvcTest 注释时出错