Searched refs:surroundingText2 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/inputmethod/src/android/view/inputmethod/cts/ |
D | BaseInputConnectionTest.java | 463 SurroundingText surroundingText2 = connection.getSurroundingText(10, 1, 0); in testGetSurroundingText_hasTextBeforeSelection() local 464 assertEquals("123456789", surroundingText2.getText().toString()); in testGetSurroundingText_hasTextBeforeSelection() 465 assertEquals(9, surroundingText2.getSelectionStart()); in testGetSurroundingText_hasTextBeforeSelection() 466 assertEquals(9, surroundingText2.getSelectionEnd()); in testGetSurroundingText_hasTextBeforeSelection() 467 assertEquals(0, surroundingText2.getOffset()); in testGetSurroundingText_hasTextBeforeSelection() 494 SurroundingText surroundingText2 = connection.getSurroundingText(10, 1, 0); in testGetSurroundingText_hasTextAfterSelection() local 495 assertEquals("1", surroundingText2.getText().toString()); in testGetSurroundingText_hasTextAfterSelection() 496 assertEquals(0, surroundingText2.getSelectionStart()); in testGetSurroundingText_hasTextAfterSelection() 497 assertEquals(0, surroundingText2.getSelectionEnd()); in testGetSurroundingText_hasTextAfterSelection() 498 assertEquals(0, surroundingText2.getOffset()); in testGetSurroundingText_hasTextAfterSelection() [all …]
|