最近我一直在和莫基托做斗争。但是,经过勇敢的努力,我使它在编译过程中没有出现错误,但在特定情况下,这个错误除外:
当我使用Mockito模拟包-私有类时,在同一个包中进行测试时,我会得到以下错误:
java.lang.UnsupportedOperationException: cannot proxy inaccessible class class [...].AndroidCalendarGenerator.ManageEventsUI.CalendarMonitorServiceConnection
at com.android.dx.stock.ProxyBuilder.buildProxyClass(ProxyBuilder.java:269)
at com.android.dx.mockito.DexmakerMockMaker.createMock(DexmakerMockMaker.java:56)
at org.mockito.internal.util.MockUtil.createMock(MockUtil.java:33)
at org.mockito.internal.MockitoCore.mock(MockitoCore.java:59)
at org.mockito.Mockito.mock(Mockito.java:1285)
at org.mockito.Mockito.mock(Mockito.java:1163)
[...]这是我的班级:
package [...].AndroidCalendarGenerator.ManageEventsUI;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.runners.MockitoJUnitRunner;
import static org.mockito.Mockito.mock;
@RunWith(MockitoJUnitRunner.class)
public class CalendarMonitorServiceConnectionTest {
@Test
public void testOne() {
CalendarMonitorServiceConnection c1 = new CalendarMonitorServiceConnection(null);
CalendarMonitorServiceConnection c = mock(CalendarMonitorServiceConnection.class);
}
}我认为,测试编译的第一行没有错误意味着这个测试与我试图模拟的CalendarMonitorServiceConnection类位于同一个文件夹中。
最后,我的build.gradle中包含了这些导入:
androidTestCompile 'junit:junit:4.12'
androidTestCompile 'org.mockito:mockito-core:1.10.19'
androidTestCompile "com.crittercism.dexmaker:dexmaker:1.4"
androidTestCompile "com.crittercism.dexmaker:dexmaker-mockito:1.4"
androidTestCompile "com.crittercism.dexmaker:dexmaker-dx:1.4"我错过了什么?
非常感谢你的回答
编辑
下面是我试图模仿的类的代码:
package [...].AndroidCalendarGenerator.ManageEventsUI;
import android.content.ComponentName;
import android.content.ServiceConnection;
import android.os.IBinder;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import [...].AndroidCalendarGenerator.CalendarEventMonitor;
import [...].AndroidCalendarGenerator.Event;
import [...].AndroidCalendarGenerator.EventChangeListener;
class CalendarMonitorServiceConnection implements ServiceConnection {
private CalendarEventMonitor mMonitor;
private EventListViewAdapter mEventListViewAdapter;
CalendarMonitorServiceConnection(EventListViewAdapter eventListViewAdapter) {
mEventListViewAdapter = eventListViewAdapter;
}
/**
* Custom event change listener that defines what to do in case of changes in the calendar
*/
private class CustomEventChangeListener implements EventChangeListener {
@Override
public void onEventActivated(Event event) {
//[...]
}
@Override
public void onEventRemoved(Event event) {
//[...]
}
@Override
public void onEventListChanged() {
//[...]
}
}
/**
* Pulls data for next 30 days and send it to the adapter
*/
private void sendNextThirtyDaysEventsToAdapter() {
//[...]
}
@Override
public void onServiceConnected(ComponentName className,
IBinder service){
//[...]
}
@Override
public void onServiceDisconnected(ComponentName arg0){
//[...]
}
}发布于 2016-11-13 13:44:54
经过一些研究,在我看来:
因此,解决方案,因为我想保持我的类包-私有,是使用Powermock。
主要来源:
我会更新我的帖子,因为我尝试权力。或者如果有人可以同意或纠正我的答案,。
https://stackoverflow.com/questions/40534101
复制相似问题