Home
last modified time | relevance | path

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

/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/
DCompositeUserDataTest.java89 final String[] categoryIds = userData.getCategoryIds(); in testMerge_nullGenericUserData() local
90 assertThat(categoryIds.length).isEqualTo(1); in testMerge_nullGenericUserData()
91 assertThat(categoryIds[0]).isEqualTo(mCategoryId3); in testMerge_nullGenericUserData()
106 final String[] categoryIds = userData.getCategoryIds(); in testMerge_bothEmpty() local
107 assertThat(categoryIds.length).isEqualTo(2); in testMerge_bothEmpty()
108 assertThat(categoryIds[0]).isEqualTo(mCategoryId3); in testMerge_bothEmpty()
109 assertThat(categoryIds[1]).isEqualTo(mCategoryId); in testMerge_bothEmpty()
125 final String[] categoryIds = userData.getCategoryIds(); in testMerge_emptyGenericUserData() local
126 assertThat(categoryIds.length).isEqualTo(3); in testMerge_emptyGenericUserData()
127 assertThat(categoryIds[0]).isEqualTo(mCategoryId3); in testMerge_emptyGenericUserData()
[all …]
/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/
DHelper.java1148 .isEqualTo(expectedResult.categoryIds.length); in assertMatches()
1152 .that(match.getCategoryId()).isEqualTo(expectedResult.categoryIds[j]); in assertMatches()
1616 public final String[] categoryIds; field in Helper.FieldClassificationResult
1624 public FieldClassificationResult(@NonNull AutofillId id, @NonNull String[] categoryIds, in FieldClassificationResult() argument
1627 this.categoryIds = categoryIds; in FieldClassificationResult()