summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaoriFujimoto <fujimoto.kaori@sharp.co.jp>2011-06-10 13:52:59 +0900
committerKaoriFujimoto <fujimoto.kaori@sharp.co.jp>2011-06-10 17:06:46 +0900
commit9ef3eb64f8fc3afa435923d6bb0fb09f45378e72 (patch)
tree8ba6f7c8b155c4a9a4b3122f4182f76bf2aef954
parent7c2e6b1c889a298839ce793382e73256262c13a9 (diff)
downloadplatform_cts-9ef3eb64f8fc3afa435923d6bb0fb09f45378e72.tar.gz
platform_cts-9ef3eb64f8fc3afa435923d6bb0fb09f45378e72.tar.bz2
platform_cts-9ef3eb64f8fc3afa435923d6bb0fb09f45378e72.zip
Add some strings for screen where the text stayed in
When the text - "Scrolls the specified widget to the specified coordinates, except constrains the X scrolling position to the horizontal regions of the text that will be visible after scrolling to the specified Y position." - has stayed in the screen, it is not scrolled. Therefore, some strings is added to make the text scroll. Change-Id: I149f3d89ba60266527a08cf5fd3562f22272a304
-rwxr-xr-xtests/tests/text/src/android/text/method/cts/TouchTest.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/tests/text/src/android/text/method/cts/TouchTest.java b/tests/tests/text/src/android/text/method/cts/TouchTest.java
index 6b53f1d5687..7217db7ca8a 100755
--- a/tests/tests/text/src/android/text/method/cts/TouchTest.java
+++ b/tests/tests/text/src/android/text/method/cts/TouchTest.java
@@ -39,7 +39,9 @@ public class TouchTest extends ActivityInstrumentationTestCase2<StubActivity> {
private Activity mActivity;
private static final String LONG_TEXT = "Scrolls the specified widget to the specified " +
"coordinates, except constrains the X scrolling position to the horizontal regions " +
- "of the text that will be visible after scrolling to the specified Y position.";
+ "of the text that will be visible after scrolling to the specified Y position." +
+ "This is the description of the test.";
+
private boolean mReturnFromTouchEvent;
public TouchTest() {