我收到的错误消息:
java.lang.IllegalStateException: 无法初始化插件: interface org.mockito.plugins.MockMaker
有问题的代码:
List<String> mockList = mock(List.class);
build.gradle 依赖项:
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
def mockito_version = 'latest.release'
// For local unit tests on your development machine
testCompile "org.mockito:mockito-core:$mockito_version"
}
我尝试查看具有相同问题的其他人,并且不断收到对PowerMock的引用。我不知道这意味着什么,所以如果这是重复的,我深表歉意。似乎没有其他问题可以解决我的问题。库已正确导入,因为我没有任何编译错误。任何帮助将不胜感激。
我尝试创建一个新项目并对此进行测试。 以下是我在 gradle 文件中的 depdenc 的外观:
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile "org.mockito:mockito-core:2.+"
}
以下是我的测试类:
import org.junit.Assert;
import org.junit.Test;
import java.util.List;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class TestList {
@Test
public void Test(){
List<String> myList = mock(List.class);
when(myList.get(0)).thenReturn("hello world");
Assert.assertEquals("hello world",myList.get(0));
}
}
这行得通。