org.robolectric.res.android.AssetPath 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.android;
import java.nio.file.Path;
public class AssetPath {
public final Path file;
public final boolean isSystem;
public AssetPath(Path file, boolean isSystem) {
this.file = file;
this.isSystem = isSystem;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy