单元测试时报错:
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test
原因:
单元测试项目的包路径和Springboot项目路径不匹配,要改为一致。因为单元测试是要建立在Springboot项目的引用之上的。
单元测试时报错:
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test
原因:
单元测试项目的包路径和Springboot项目路径不匹配,要改为一致。因为单元测试是要建立在Springboot项目的引用之上的。