package cn.jhxcom.web.demo;
import org.junit.Test;
import org.junit.runner.RunWith;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;import cn.jhxcom.web.demo.domain.User;
import lombok.extern.slf4j.Slf4j; @RunWith(SpringRunner.class)@SpringBootTestpublic class TestEntity { @Test public void testUser(){ User user = new User() ; user.setId(1); user.setName("番茄兄dei"); user.setAge(3);System.out.println(user);}}做个测试就遇到了bug,不能Init,把函数的返回值改为void后就正确了,哎,要什么自行车!
@RunWith(SpringRunner.class)
@SpringBootTest这两个注释是启动整个springboot来检测这个函数,天呀,阵仗太大了。去掉这两个注释,很快打下了这段文字:User(id=1, name=番茄兄dei, phone=null, password=null, age=3, salary=0.0, createTime=null)
对呀,这才是我要的效果。
总结:1.测试函数返回值为void;2,。看情况决定是否需要@RunWith(SpringRunner.class) @SpringBootTest注解。