Home
last modified time | relevance | path

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

/cts/tests/autofillservice/src/android/autofillservice/cts/
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 …]
DHelper.java1107 .isEqualTo(expectedResult.categoryIds.length); in assertMatches()
1111 .that(match.getCategoryId()).isEqualTo(expectedResult.categoryIds[j]); in assertMatches()
1467 public final String[] categoryIds; field in Helper.FieldClassificationResult
1474 FieldClassificationResult(@NonNull AutofillId id, @NonNull String[] categoryIds, in FieldClassificationResult() argument
1477 this.categoryIds = categoryIds; in FieldClassificationResult()