Home
last modified time | relevance | path

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

/packages/modules/ExtServices/tests/src/android/ext/services/autofill/
DExactMatchTest.java55 final Bundle last4 = last4Bundle(); in testCalculateScore_succeedMatchMixedCases_last4() local
56 assertFloat(calculateScore(AutofillValue.forText("TEST"), "1234 test", last4), 1); in testCalculateScore_succeedMatchMixedCases_last4()
57 assertFloat(calculateScore(AutofillValue.forText("test"), "1234 TEST", last4), 1); in testCalculateScore_succeedMatchMixedCases_last4()
62 final Bundle last4 = last4Bundle(); in testCalculateScore_mismatchDifferentSizes_last4() local
63 assertFloat(calculateScore(AutofillValue.forText("TEST"), "TEST1", last4), 0); in testCalculateScore_mismatchDifferentSizes_last4()
64 assertFloat(calculateScore(AutofillValue.forText(""), "TEST", last4), 0); in testCalculateScore_mismatchDifferentSizes_last4()
65 assertFloat(calculateScore(AutofillValue.forText("TEST"), "", last4), 0); in testCalculateScore_mismatchDifferentSizes_last4()
70 final Bundle last4 = last4Bundle(); in testCalculateScore_match() local
72 "xxxx xxxx xxxx 1234", last4), 1); in testCalculateScore_match()
74 assertFloat(calculateScore(AutofillValue.forText("TEST 1234"), "1234", last4), 1); in testCalculateScore_match()