Home
last modified time | relevance | path

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

/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
DLoginActivityTest.java29 import static android.contentcaptureservice.cts.Assertions.assertViewTextChanged;
368 assertViewTextChanged(events, i, activity.mUsername.getAutofillId(), "USER"); in testTextChanged()
369 assertViewTextChanged(events, i + 1, activity.mPassword.getAutofillId(), "PASS"); in testTextChanged()
409 assertViewTextChanged(events, i, activity.mUsername.getAutofillId(), "ab"); in testTextChangeBuffer()
410 assertViewTextChanged(events, i + 1, activity.mPassword.getAutofillId(), "de"); in testTextChangeBuffer()
411 assertViewTextChanged(events, i + 2, activity.mUsername.getAutofillId(), "abc"); in testTextChangeBuffer()
DCustomViewActivityTest.java23 import static android.contentcaptureservice.cts.Assertions.assertViewTextChanged;
246 assertViewTextChanged(events, i + 2, child2IdRef.get(), "The Times They Are a-Changin'"); in testVirtualView_oneLevel()
DAssertions.java442 public static void assertViewTextChanged(@NonNull List<ContentCaptureEvent> events, int index, in assertViewTextChanged() method in Assertions