<dependency>
<!-- CGLib代理(例如为范围内的Bean创建的代理)将代理方法声明为final。
这将阻止Mockito正常运行,因为它无法在其默认配置中模拟或监视最终方法。
如果您要模拟或监视此类Bean,请通过将org.mockito:mockito-inline添加到应用程序的测试依赖项中,
将Mockito配置为使用其内联模拟生成器。这使Mockito可以模拟和监视最终方法。 -->
<!-- https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-testing -->
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<version>3.6.28</version>
</dependency>
原文:https://www.cnblogs.com/chris94/p/14354285.html