aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-12-08 08:39:15 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-12-08 08:39:15 +0000
commit8fa7cdcb69e9ef25fd566fa397a50e15b25524b3 (patch)
treefca794db69f02c0ad148a1d99f590c64c7f35934 /tests
parentbf6b55853d27a53f9d684cd0bc216e6c759f2472 (diff)
parent3dca77ec076a8d7fa64a5326a0409f038edac890 (diff)
downloadlatinime-8fa7cdcb69e9ef25fd566fa397a50e15b25524b3.tar.gz
latinime-8fa7cdcb69e9ef25fd566fa397a50e15b25524b3.tar.xz
latinime-8fa7cdcb69e9ef25fd566fa397a50e15b25524b3.zip
am 3dca77ec: Merge "Refactor KeysCache to UniqueKeysCache"
* commit '3dca77ec076a8d7fa64a5326a0409f038edac890': Refactor KeysCache to UniqueKeysCache
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java20
1 files changed, 1 insertions, 19 deletions
diff --git a/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java b/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java
index a8c4ac8fa..27519ee93 100644
--- a/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java
+++ b/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java
@@ -120,31 +120,13 @@ abstract class LayoutTestsBase extends KeyboardLayoutSetTestsBase {
// TODO: Add phone, phone symbols, number, number password layout tests.
- public final void testAlphabet() {
+ public final void testLayouts() {
doKeyboardTests(KeyboardId.ELEMENT_ALPHABET);
- }
-
- public final void testAlphabetAutomaticShifted() {
doKeyboardTests(KeyboardId.ELEMENT_ALPHABET_AUTOMATIC_SHIFTED);
- }
-
- public final void testAlphabetManualShifted() {
doKeyboardTests(KeyboardId.ELEMENT_ALPHABET_MANUAL_SHIFTED);
- }
-
- public final void testAlphabetShiftLocked() {
doKeyboardTests(KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCKED);
- }
-
- public final void testAlphabetShiftLockShifted() {
doKeyboardTests(KeyboardId.ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED);
- }
-
- public final void testSymbols() {
doKeyboardTests(KeyboardId.ELEMENT_SYMBOLS);
- }
-
- public final void testSymbolsShifted() {
doKeyboardTests(KeyboardId.ELEMENT_SYMBOLS_SHIFTED);
}