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