MockContentResolverpublic class MockContentResolver extends android.content.ContentResolver A mock {@link android.content.ContentResolver} class that isolates the test code from the real
content system. All methods are non-functional and throw
{@link java.lang.UnsupportedOperationException}.
This only isolates the test code in ways that have proven useful so far. More should be
added as they become a problem. |
Fields Summary |
---|
Map | mProviders |
Constructors Summary |
---|
public MockContentResolver()
super(null);
mProviders = Maps.newHashMap();
|
|