| java.lang.Object | |
| ↳ | android.support.test.espresso.assertion.LayoutAssertions | 
A collection of layout ViewAssertions.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 
          Returns a  ViewAssertionthat asserts that view hierarchy does not contain
 ellipsized or cut off text views. | |||||||||||
| 
          Returns a  ViewAssertionthat asserts that view hierarchy does not contain
 multiline buttons. | |||||||||||
| 
          Returns a  ViewAssertionthat asserts that descendant views matching the selector
 do not overlap each other. | |||||||||||
| 
          Returns a  ViewAssertionthat asserts that descendant objects assignable
 to TextView or ImageView do not overlap each other. | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  java.lang.Object | |||||||||||
Returns a ViewAssertion that asserts that view hierarchy does not contain
 ellipsized or cut off text views.
Returns a ViewAssertion that asserts that view hierarchy does not contain
 multiline buttons.
Returns a ViewAssertion that asserts that descendant views matching the selector
 do not overlap each other.
 
Example: onView(rootView).check(noOverlaps(isAssignableFrom(TextView.class));
Returns a ViewAssertion that asserts that descendant objects assignable
 to TextView or ImageView do not overlap each other.
 
Example: onView(rootView).check(noOverlaps())