我正在尝试在我的 eclipse rcp 项目中使用 mockito。出于某种原因,每次我要运行单元测试时都会收到此错误:
java.lang.NoClassDefFoundError: org/mockito/Mockito 原因:java.lang.ClassNotFoundException: org.mockito.Mockito
我的代码与 mockito 示例中的代码类似:
@Test
public void testExecuteStep(){
List test = mock(List.class); //here the exception will be thrown.
}
谁能给我这个问题的解决方案?