Home
last modified time | relevance | path

Searched refs:getCurrentVideoState (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowVideoViewTest.java87 assertThat(shadowVideoView.getCurrentVideoState()).isEqualTo(ShadowVideoView.START); in shouldStartPlaying()
94 assertThat(shadowVideoView.getCurrentVideoState()).isEqualTo(ShadowVideoView.STOP); in shouldStopPlayback()
103 assertThat(shadowVideoView.getCurrentVideoState()).isEqualTo(ShadowVideoView.SUSPEND); in shouldSuspendPlaying()
113 assertThat(shadowVideoView.getCurrentVideoState()).isEqualTo(ShadowVideoView.RESUME); in shouldResumePlaying()
122 assertThat(shadowVideoView.getCurrentVideoState()).isEqualTo(ShadowVideoView.PAUSE); in shouldPausePlaying()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowVideoView.java150 public int getCurrentVideoState() { in getCurrentVideoState() method in ShadowVideoView