注解的作用@SpringBootTest,@RunWith,注解爆红异常问题

@SpringBootTest 这个注解表示这个类是测试类,这样这个类就不会被打包发送,在程序做打包的时候会忽略这个测试类;
@RunWith 这个注解的意思是启动单元测试类,不用这个注解单元测试类是不能运行的。这个注解需要传递一个参数,必须是SpringRunner的实例类型,@RunWith(SpringRunner.class);

在单元测试类中必须要有这两个注解
@SpringBootTest
@RunWith(SpringRunner.class);
【异常问题】
* ·@RunWith这个注解爆红的原因可能是没有成功导包
* ·import org.junit.runner.RunWith;
* ·import org.springframework.test.context.junit4.SpringRunner;
* ·@SpringBootTest注解爆红时检查导包情况
* ·import org.springframework.boot.test.context.SpringBootTest;
*/

你可能感兴趣的:(springBoot学习笔记,java,开发语言)