aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-10-21 14:40:32 +0900
committerThe Android Automerger <android-build@google.com>2013-10-22 05:23:48 -0700
commit5b5ed3d6092ea539d8cfebd786c63ec0c784040b (patch)
tree96464cc51387d03b8c7131882ac50555cf29c7ef /tests/src
parent79ccba757af6aa59dc42309172a37d96e6560da5 (diff)
downloadlatinime-5b5ed3d6092ea539d8cfebd786c63ec0c784040b.tar.gz
latinime-5b5ed3d6092ea539d8cfebd786c63ec0c784040b.tar.xz
latinime-5b5ed3d6092ea539d8cfebd786c63ec0c784040b.zip
Fix a bug where autocaps would jam auto-commit
Bug: 11311002 Change-Id: I62955e364c9ffc75322cf05fa3ad7985f1d09259
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/com/android/inputmethod/latin/SuggestedWordsTests.java10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestedWordsTests.java b/tests/src/com/android/inputmethod/latin/SuggestedWordsTests.java
index a594baf0b..375352067 100644
--- a/tests/src/com/android/inputmethod/latin/SuggestedWordsTests.java
+++ b/tests/src/com/android/inputmethod/latin/SuggestedWordsTests.java
@@ -25,6 +25,7 @@ import com.android.inputmethod.latin.utils.CollectionUtils;
import java.util.ArrayList;
import java.util.Locale;
+import java.util.Random;
@SmallTest
public class SuggestedWordsTests extends AndroidTestCase {
@@ -72,15 +73,20 @@ public class SuggestedWordsTests extends AndroidTestCase {
return new SuggestedWordInfo(s, 100,
SuggestedWordInfo.KIND_TYPED, null /* sourceDict */,
SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */,
- SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */);
+ new Random().nextInt(1000000) /* autoCommitFirstWordConfidence */);
}
// Helper for testGetTransformedWordInfo
private SuggestedWordInfo transformWordInfo(final String info,
final int trailingSingleQuotesCount) {
- return Suggest.getTransformedSuggestedWordInfo(createWordInfo(info),
+ final SuggestedWordInfo suggestedWordInfo = createWordInfo(info);
+ final SuggestedWordInfo returnedWordInfo =
+ Suggest.getTransformedSuggestedWordInfo(suggestedWordInfo,
Locale.ENGLISH, false /* isAllUpperCase */, false /* isFirstCharCapitalized */,
trailingSingleQuotesCount);
+ assertEquals(suggestedWordInfo.mAutoCommitFirstWordConfidence,
+ returnedWordInfo.mAutoCommitFirstWordConfidence);
+ return returnedWordInfo;
}
public void testGetTransformedSuggestedWordInfo() {