springboot测试启动报错:
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
解决:注意springboot启动类Application要和测试类在同一级包下
2023-08-09 13:40:34
springboot测试启动报错:
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
解决:注意springboot启动类Application要和测试类在同一级包下