org.robolectric.shadows.ShadowContentProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadows-framework Show documentation
Show all versions of shadows-framework Show documentation
An alternative Android testing framework.
package org.robolectric.shadows;
import static android.os.Build.VERSION_CODES.KITKAT;
import static org.robolectric.shadow.api.Shadow.directlyOn;
import android.content.ContentProvider;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.RealObject;
@Implements(ContentProvider.class)
public class ShadowContentProvider {
@RealObject private ContentProvider realContentProvider;
private String callingPackage;
public void setCallingPackage(String callingPackage) {
this.callingPackage = callingPackage;
}
@Implementation(minSdk = KITKAT)
protected String getCallingPackage() {
if (callingPackage != null) {
return callingPackage;
} else {
return directlyOn(realContentProvider, ContentProvider.class, "getCallingPackage");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy