Home
last modified time | relevance | path

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

/cts/tests/tests/media/bettertogether/src/android/media/bettertogether/cts/
DMediaRoute2InfoTest.java148 Bundle extrasOut = routeInfo.getExtras(); in testBuilderAndGettersOfMediaRoute2Info() local
149 assertThat(extrasOut).isNotNull(); in testBuilderAndGettersOfMediaRoute2Info()
150 assertThat(extrasOut).containsKey(TEST_KEY); in testBuilderAndGettersOfMediaRoute2Info()
151 assertThat(extrasOut).string(TEST_KEY).isEqualTo(TEST_VALUE); in testBuilderAndGettersOfMediaRoute2Info()
371 Bundle extrasOut = routeInfoFromParcel.getExtras(); in testParcelingAndUnParceling() local
372 assertThat(extrasOut).isNotNull(); in testParcelingAndUnParceling()
373 assertThat(extrasOut).containsKey(TEST_KEY); in testParcelingAndUnParceling()
374 assertThat(extrasOut).string(TEST_KEY).isEqualTo(TEST_VALUE); in testParcelingAndUnParceling()
DMediaSession2Test.java174 Bundle extrasOut = session.getToken().getExtras(); in testBuilder_setExtras_withFrameworkParcelable() local
175 assertThat(extrasOut).isNotNull(); in testBuilder_setExtras_withFrameworkParcelable()
176 assertThat(extrasOut).containsKey(testKey); in testBuilder_setExtras_withFrameworkParcelable()
177 assertThat(extrasOut).parcelable(testKey).isEqualTo(frameworkParcelable); in testBuilder_setExtras_withFrameworkParcelable()
288 Bundle extrasOut = tokenOut.getExtras(); in testSession2Token_writeToParcel() local
289 assertThat(extrasOut).isNotNull(); in testSession2Token_writeToParcel()
290 assertThat(extrasOut.getString(TEST_KEY)).isEqualTo(TEST_VALUE); in testSession2Token_writeToParcel()
DMediaSessionTest.java257 Bundle extrasOut = mCallback.mExtras; in testConfigureSession() local
258 assertThat(extrasOut).isNotNull(); in testConfigureSession()
259 assertThat(extrasOut.get(TEST_KEY)).isEqualTo(TEST_VALUE); in testConfigureSession()
261 extrasOut = controller.getExtras(); in testConfigureSession()
262 assertThat(extrasOut).isNotNull(); in testConfigureSession()
263 assertThat(extrasOut.get(TEST_KEY)).isEqualTo(TEST_VALUE); in testConfigureSession()