android.test.ViewAsserts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-test Show documentation
Show all versions of android-test Show documentation
A library jar that provides APIs for testing Applications written for the Google Android Platform.
The newest version!
package android.test;
public class ViewAsserts
{
ViewAsserts() { throw new RuntimeException("Stub!"); }
public static void assertOnScreen(android.view.View origin, android.view.View view) { throw new RuntimeException("Stub!"); }
public static void assertOffScreenBelow(android.view.View origin, android.view.View view) { throw new RuntimeException("Stub!"); }
public static void assertOffScreenAbove(android.view.View origin, android.view.View view) { throw new RuntimeException("Stub!"); }
public static void assertHasScreenCoordinates(android.view.View origin, android.view.View view, int x, int y) { throw new RuntimeException("Stub!"); }
public static void assertBaselineAligned(android.view.View first, android.view.View second) { throw new RuntimeException("Stub!"); }
public static void assertRightAligned(android.view.View first, android.view.View second) { throw new RuntimeException("Stub!"); }
public static void assertRightAligned(android.view.View first, android.view.View second, int margin) { throw new RuntimeException("Stub!"); }
public static void assertLeftAligned(android.view.View first, android.view.View second) { throw new RuntimeException("Stub!"); }
public static void assertLeftAligned(android.view.View first, android.view.View second, int margin) { throw new RuntimeException("Stub!"); }
public static void assertBottomAligned(android.view.View first, android.view.View second) { throw new RuntimeException("Stub!"); }
public static void assertBottomAligned(android.view.View first, android.view.View second, int margin) { throw new RuntimeException("Stub!"); }
public static void assertTopAligned(android.view.View first, android.view.View second) { throw new RuntimeException("Stub!"); }
public static void assertTopAligned(android.view.View first, android.view.View second, int margin) { throw new RuntimeException("Stub!"); }
public static void assertHorizontalCenterAligned(android.view.View reference, android.view.View test) { throw new RuntimeException("Stub!"); }
public static void assertVerticalCenterAligned(android.view.View reference, android.view.View test) { throw new RuntimeException("Stub!"); }
public static void assertGroupIntegrity(android.view.ViewGroup parent) { throw new RuntimeException("Stub!"); }
public static void assertGroupContains(android.view.ViewGroup parent, android.view.View child) { throw new RuntimeException("Stub!"); }
public static void assertGroupNotContains(android.view.ViewGroup parent, android.view.View child) { throw new RuntimeException("Stub!"); }
}