org.robolectric.shadows.ShadowRelativeLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shadows-core-v17 Show documentation
Show all versions of shadows-core-v17 Show documentation
An alternative Android testing framework.
package org.robolectric.shadows;
import android.widget.RelativeLayout;
import org.robolectric.annotation.Implements;
/**
* Shadow for {@link android.widget.RelativeLayout}.
*/
@Implements(RelativeLayout.class)
public class ShadowRelativeLayout extends ShadowViewGroup {
}