am 20ec43a2: Merge "Add tests for double space behavior"

* commit '20ec43a2652263532e41035360988567164ac311':
  Add tests for double space behavior
main
Jean Chalard 2012-01-25 22:11:21 -08:00 committed by Android Git Automerger
commit 27310ae012
1 changed files with 15 additions and 0 deletions

View File

@ -177,4 +177,19 @@ public class InputLogicTests extends ServiceTestCase<LatinIME> {
type(STRING_TO_TYPE);
assertEquals("simple auto-correct", EXPECTED_RESULT, mTextView.getText().toString());
}
public void testDoubleSpace() {
final String STRING_TO_TYPE = "this ";
final String EXPECTED_RESULT = "this. ";
type(STRING_TO_TYPE);
assertEquals("double space make a period", EXPECTED_RESULT, mTextView.getText().toString());
}
public void testCancelDoubleSpace() {
final String STRING_TO_TYPE = "tgis ";
final String EXPECTED_RESULT = "this ";
type(STRING_TO_TYPE);
type(Keyboard.CODE_DELETE);
assertEquals("double space make a period", EXPECTED_RESULT, mTextView.getText().toString());
}
}