Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
DKeyboardLayoutSetNavigateMoreKeysBase.java89 final MoreKeySpec[] actualMoreKeys = actualKey.getMoreKeys(); in doTestMoreKeysOf() local
90 final String tag = actualKey.toString() + " moreKeys=" + Arrays.toString(actualMoreKeys); in doTestMoreKeysOf()
92 assertEquals(tag, null, actualMoreKeys); in doTestMoreKeysOf()
105 assertNotNull(tag + " moreKeys", actualMoreKeys); in doTestMoreKeysOf()
106 assertEquals(tag, expectedMoreKeys.length, actualMoreKeys.length); in doTestMoreKeysOf()
107 for (int index = 0; index < actualMoreKeys.length; index++) { in doTestMoreKeysOf()
110 assertEquals(tag + " label " + index, null, actualMoreKeys[index].mLabel); in doTestMoreKeysOf()
113 assertEquals(tag + " label " + index, expectedLabel, actualMoreKeys[index].mLabel); in doTestMoreKeysOf()
116 assertEquals(tag + " icon " + index, expectedIconId, actualMoreKeys[index].mIconId); in doTestMoreKeysOf()