| java.lang.Object | |
| ↳ | android.support.test.espresso.contrib.DrawerMatchers | 
Hamcrest matchers for a DrawerLayout.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 
          Returns a matcher that verifies that the drawer (with gravity START) is closed.
         | |||||||||||
| 
          Returns a matcher that verifies that the drawer with the specified gravity is closed.
         | |||||||||||
| 
          Returns a matcher that verifies that the drawer with the specified gravity is open.
         | |||||||||||
| 
          Returns a matcher that verifies that the drawer (with gravity START) is open.
         | |||||||||||
| [Expand] Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class
  java.lang.Object | |||||||||||
Returns a matcher that verifies that the drawer (with gravity START) is closed. Matches only
 when the drawer is fully closed. Use isOpen() instead of not(isClosed()))
 when you wish to check that the drawer is fully open.
Returns a matcher that verifies that the drawer with the specified gravity is closed. Matches
 only when the drawer is fully closed. Use isOpen(int) instead of not(isClosed())) when you wish to check that the drawer is fully open.
Returns a matcher that verifies that the drawer with the specified gravity is open. Matches
 only when the drawer is fully open. Use isClosed(int) instead of not(isOpen()) when you wish to check that the drawer is fully closed.
Returns a matcher that verifies that the drawer (with gravity START) is open. Matches only
 when the drawer is fully open. Use isClosed() instead of not(isOpen()) when
 you wish to check that the drawer is fully closed.