Searched refs:surroundingText3 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/inputmethod/src/android/view/inputmethod/cts/ |
D | BaseInputConnectionTest.java | 470 SurroundingText surroundingText3 = connection.getSurroundingText(0, 10, in testGetSurroundingText_hasTextBeforeSelection() local 472 assertEquals("", surroundingText3.getText().toString()); in testGetSurroundingText_hasTextBeforeSelection() 473 assertEquals(0, surroundingText3.getSelectionStart()); in testGetSurroundingText_hasTextBeforeSelection() 474 assertEquals(0, surroundingText3.getSelectionEnd()); in testGetSurroundingText_hasTextBeforeSelection() 475 assertEquals(9, surroundingText3.getOffset()); in testGetSurroundingText_hasTextBeforeSelection() 501 SurroundingText surroundingText3 = connection.getSurroundingText(0, 10, 0); in testGetSurroundingText_hasTextAfterSelection() local 502 assertEquals("123456789", surroundingText3.getText().toString()); in testGetSurroundingText_hasTextAfterSelection() 503 assertEquals(0, surroundingText3.getSelectionStart()); in testGetSurroundingText_hasTextAfterSelection() 504 assertEquals(0, surroundingText3.getSelectionEnd()); in testGetSurroundingText_hasTextAfterSelection() 505 assertEquals(0, surroundingText3.getOffset()); in testGetSurroundingText_hasTextAfterSelection() [all …]
|