Home
last modified time | relevance | path

Searched refs:stateOut (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/media/misc/src/android/media/misc/cts/
DPlaybackStateTest.java206 PlaybackState stateOut = PlaybackState.CREATOR.createFromParcel(parcel); in testWriteToParcel() local
207 assertEquals(PlaybackState.STATE_CONNECTING, stateOut.getState()); in testWriteToParcel()
208 assertEquals(TEST_POSITION, stateOut.getPosition()); in testWriteToParcel()
209 assertEquals(TEST_PLAYBACK_SPEED, stateOut.getPlaybackSpeed(), DELTA); in testWriteToParcel()
210 assertEquals(TEST_UPDATE_TIME, stateOut.getLastPositionUpdateTime()); in testWriteToParcel()
211 assertEquals(TEST_BUFFERED_POSITION, stateOut.getBufferedPosition()); in testWriteToParcel()
212 assertEquals(TEST_ACTIONS, stateOut.getActions()); in testWriteToParcel()
213 assertEquals(TEST_QUEUE_ITEM_ID, stateOut.getActiveQueueItemId()); in testWriteToParcel()
214 assertEquals(TEST_ERROR_MSG, stateOut.getErrorMessage()); in testWriteToParcel()
215 assertEquals(EXTRAS_VALUE, stateOut.getExtras().get(EXTRAS_KEY)); in testWriteToParcel()
[all …]
/cts/tests/tests/media/bettertogether/src/android/media/bettertogether/cts/
DMediaControllerTest.java134 PlaybackState stateOut = mController.getPlaybackState(); in testGetPlaybackState() local
135 assertThat(stateOut).isNotNull(); in testGetPlaybackState()
136 assertThat(stateOut.getState()).isEqualTo(testState); in testGetPlaybackState()
137 assertThat((double) stateOut.getPosition()).isWithin(positionDelta).of(testPosition); in testGetPlaybackState()
138 assertThat(stateOut.getPlaybackSpeed()).isWithin(0.0f).of(testSpeed); in testGetPlaybackState()
139 assertThat(stateOut.getActions()).isEqualTo(testActions); in testGetPlaybackState()
140 assertThat(stateOut.getActiveQueueItemId()).isEqualTo(testActiveQueueItemId); in testGetPlaybackState()
141 assertThat(stateOut.getBufferedPosition()).isEqualTo(testBufferedPosition); in testGetPlaybackState()
142 assertThat(stateOut.getErrorMessage().toString()).isEqualTo(testErrorMsg); in testGetPlaybackState()
143 assertThat(stateOut.getExtras()).isNotNull(); in testGetPlaybackState()
[all …]
DMediaSessionTest.java296 PlaybackState stateOut = mCallback.mPlaybackState; in testConfigureSession() local
297 assertThat(stateOut).isNotNull(); in testConfigureSession()
298 assertThat(stateOut.getActions()).isEqualTo(TEST_ACTION); in testConfigureSession()
300 stateOut = controller.getPlaybackState(); in testConfigureSession()
301 assertThat(stateOut).isNotNull(); in testConfigureSession()
302 assertThat(stateOut.getActions()).isEqualTo(TEST_ACTION); in testConfigureSession()