org.robolectric.res.EmptyStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resources Show documentation
Show all versions of resources Show documentation
An alternative Android testing framework.
package org.robolectric.res;
public class EmptyStyle implements Style {
@Override
public AttributeResource getAttrValue(ResName resName) {
return null;
}
@Override
public String toString() {
return "Empty Style";
}
}