
org.robolectric.shadows.ShadowOutline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows;
import android.graphics.Path;
import android.graphics.Outline;
import org.robolectric.annotation.Implements;
import org.robolectric.annotation.Implementation;
import static android.os.Build.VERSION_CODES.LOLLIPOP;
@Implements(value = Outline.class, minSdk = LOLLIPOP)
public class ShadowOutline {
@Implementation
public void setConvexPath(Path convexPath) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy