springboot测试出现TestIgnored 测试springboot项目出现Test Ignored的解决
我长不高了啊 人气:7想了解测试springboot项目出现Test Ignored的解决的相关内容吗,我长不高了啊在本文为您仔细讲解springboot测试出现TestIgnored的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:测试springboot项目,出现Test,Ignored,springboot项目测试,下面大家一起来学习吧。
测试springboot项目出现Test Ignored
今天在写springBoot项目运行测试类时出现了以下问题:
Test ignored.
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test
原因是我在建包时把启动类放到了servlet包下,如图
需要把这个启动目录放到根目录下,移出来问题就解决了
测试类不报错只提示Test ignored的解决
在点击运行测试方法后出现如下错误:
解决方法:
在这个位置需要有一个Java类,名字可以随便写。
类里面这样写:
import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class MyApp { public static void main(String[] args) { SpringApplication.run(MyApp.class);//MyApp为你的启动类的名称 如下图 } }
这相当于一个程序的入口,名字可以随便起,但是一定得有。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
加载全部内容