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;
420 assertViewTextChanged(events, i, activity.mUsername.getAutofillId(), "USER"); in testTextChanged()
421 assertViewTextChanged(events, i + 1, activity.mPassword.getAutofillId(), "PASS"); in testTextChanged()
467 assertViewTextChanged(events, i, activity.mUsername.getAutofillId(), "a"); in testTextChangeBuffer()
468 assertViewTextChanged(events, i + 1, activity.mUsername.getAutofillId(), "ab"); in testTextChangeBuffer()
469 assertViewTextChanged(events, i + 2, activity.mUsername.getAutofillId(), ""); in testTextChangeBuffer()
470 assertViewTextChanged(events, i + 3, activity.mUsername.getAutofillId(), "abc"); in testTextChangeBuffer()
471 assertViewTextChanged(events, i + 4, activity.mPassword.getAutofillId(), "d"); in testTextChangeBuffer()
472 assertViewTextChanged(events, i + 5, activity.mPassword.getAutofillId(), ""); in testTextChangeBuffer()
473 assertViewTextChanged(events, i + 6, activity.mPassword.getAutofillId(), ""); in testTextChangeBuffer()
[all …]
DCustomViewActivityTest.java19 import static android.contentcaptureservice.cts.Assertions.assertViewTextChanged;
285 assertViewTextChanged(events, i + 2, child2IdRef.get(), "The Times They Are a-Changin'"); in testVirtualView_oneLevel()
DAssertions.java486 public static void assertViewTextChanged(@NonNull List<ContentCaptureEvent> events, int index, in assertViewTextChanged() method in Assertions