org.robolectric.manifest.ContentProviderData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robolectric-resources Show documentation
Show all versions of robolectric-resources Show documentation
An alternative Android testing framework.
package org.robolectric.manifest;
public class ContentProviderData {
private final String className;
private final String authority;
public ContentProviderData(String className, String authority) {
this.className = className;
this.authority = authority;
}
public String getClassName() {
return className;
}
public String getAuthority() {
return authority;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy