我收到的错误讯息:
java.lang.IllegalStateException:无法初始化插件: 接口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的引用。我不知道这意味着什么,所以如果这是重复我道歉。似乎没有其他问题有解决我的问题的解决方案。库已正确导入,因为我没有任何编译错误。任何帮助将不胜感激。
答案 0 :(得分:0)
我试图创建一个新项目并对其进行测试。下面是我在gradle文件中的depdencies的外观:
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));
}
}
这有效。