我正在尝试使用mockito core 3.8模拟一个挑逗类(公共接口),我无法做到。
我有JAVA 11,这是以下错误:
org.mockito.exceptions.base.MockitoException:
Mockito cannot mock this class: interface com.adobe.cq.wcm.core.components.models.Teaser.
Mockito can only mock non-private & non-final classes.
If you're not sure why you're getting this error, please report to the mailing list.
Java : 11
JVM vendor name : Oracle Corporation
JVM vendor version : 11.0.12+8-LTS-237
JVM name : Java HotSpot(TM) 64-Bit Server VM
JVM version : 11.0.12+8-LTS-237
JVM info : mixed mode
OS name : Windows 10
OS version : 10.0
Underlying exception : java.lang.IllegalStateException: Type not found: com.adobe.cq.wcm.core.components.internal.jackson.ComponentDataModelSerializer
这是怎么回事?
我终于找到了解决办法。问题是我没有wcm核心组件依赖于我的项目。由于AEMaaCS将该依赖项作为包包含,因此我们不需要在项目中包含该依赖项。
我最终添加了依赖项,但只是为了scope=test。