Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/security/
DEncryptionAndCredentialTest.java76 final List<String> expectedKeys = new ArrayList<>(); in getNonIndexableKeys_pageIsDisabled_shouldReturnAllKeysAsNonIndexable() local
78 expectedKeys.addAll(((BaseSearchIndexProvider) SEARCH_INDEX_DATA_PROVIDER) in getNonIndexableKeys_pageIsDisabled_shouldReturnAllKeysAsNonIndexable()
83 assertThat(keys).containsExactlyElementsIn(expectedKeys); in getNonIndexableKeys_pageIsDisabled_shouldReturnAllKeysAsNonIndexable()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
DExpectedKeyboardBuilder.java222 final ExpectedKey[] expectedKeys = joinKeys(keys); in insertKeysAtRow() local
224 setElementAt(row, column + index, expectedKeys[index], true /* insert */); in insertKeysAtRow()
239 final ExpectedKey[] expectedKeys = joinKeys(keys); in addKeysOnTheLeftOfRow() local
242 setElementAt(row, 1, expectedKeys[index], true /* insert */); in addKeysOnTheLeftOfRow()
/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DPreprocessingManagerTest.java564 String[] expectedKeys = new String[expected.size()]; in onAdditionalGroupAndRank_returnsTheSameGroupsAsStandardGroup() local
565 for (int i = 0; i < expectedKeys.length; i++) { in onAdditionalGroupAndRank_returnsTheSameGroupsAsStandardGroup()
566 expectedKeys[i] = expected.get(i).getGroupKey(); in onAdditionalGroupAndRank_returnsTheSameGroupsAsStandardGroup()
577 Arrays.sort(expectedKeys); in onAdditionalGroupAndRank_returnsTheSameGroupsAsStandardGroup()
578 assertThat(actualKeys).isEqualTo(expectedKeys); in onAdditionalGroupAndRank_returnsTheSameGroupsAsStandardGroup()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactLocaleUtilsTest.java307 private void verifyKeys(final Iterator<String> resultKeys, final String[] expectedKeys) in verifyKeys() argument
313 assertEquals(new HashSet<String>(Arrays.asList(expectedKeys)), allKeys); in verifyKeys()