Home
last modified time | relevance | path

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

/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
DAssertions.java65 @NonNull ContentCaptureSessionId expectedSessionId, in assertRightActivity() argument
67 assertRightActivity(session, expectedSessionId, activity.getComponentName()); in assertRightActivity()
74 @NonNull ContentCaptureSessionId expectedSessionId, in assertRightActivity() argument
80 assertThat(session.id).isEqualTo(expectedSessionId); in assertRightActivity()
244 @NonNull ContentCaptureSessionId expectedSessionId, in assertViewAppeared() argument
247 assertSessionId(expectedSessionId, expectedView); in assertViewAppeared()
385 @NonNull ContentCaptureSessionId expectedSessionId, @NonNull View expectedView) { in assertViewWithUnknownParentAppeared() argument
387 assertSessionId(expectedSessionId, expectedView); in assertViewWithUnknownParentAppeared()
474 public static void assertSessionId(@NonNull ContentCaptureSessionId expectedSessionId, in assertSessionId() argument
476 assertThat(expectedSessionId).isNotNull(); in assertSessionId()
[all …]
DEventsAssertor.java147 public EventsAssertor assertViewAppeared(@NonNull ContentCaptureSessionId expectedSessionId, in assertViewAppeared() argument
150 assertSessionId(expectedSessionId, expectedView); in assertViewAppeared()
159 public EventsAssertor assertViewAppeared(@NonNull ContentCaptureSessionId expectedSessionId, in assertViewAppeared() argument
162 assertSessionId(expectedSessionId, expectedView); in assertViewAppeared()
/cts/tests/tests/media/src/android/media/cts/
DAudioTrackTest.java372 final int expectedSessionId = new AudioManager(getContext()).generateAudioSessionId(); in testBuilderSession() local
375 .setSessionId(expectedSessionId) in testBuilderSession()
382 assertEquals(TEST_NAME + ": Assigned track session ID", expectedSessionId, in testBuilderSession()