summaryrefslogtreecommitdiffstats
path: root/docs/html/tools/testing
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-10-31 18:45:18 +0000
committerandroid-build-merger <android-build-merger@google.com>2014-10-31 18:45:18 +0000
commit14deca6ded51438439680eebf6d87f5191122e5b (patch)
tree4e704a47b2145d6053cd67c1c2fc2e99bfefffc8 /docs/html/tools/testing
parentb2857d7e37882b8286f711c9829275fc95ee3ac0 (diff)
parent2eaf0b0a7b86304a739f91033e9f8f053123e74d (diff)
downloadframeworks_base-14deca6ded51438439680eebf6d87f5191122e5b.zip
frameworks_base-14deca6ded51438439680eebf6d87f5191122e5b.tar.gz
frameworks_base-14deca6ded51438439680eebf6d87f5191122e5b.tar.bz2
am a27afde3: Merge "Fix typo in activity_testing.jd" into lmp-mr1-dev
automerge: 2eaf0b0 * commit '2eaf0b0a7b86304a739f91033e9f8f053123e74d': Fix typo in activity_testing.jd
Diffstat (limited to 'docs/html/tools/testing')
-rw-r--r--docs/html/tools/testing/activity_testing.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/tools/testing/activity_testing.jd b/docs/html/tools/testing/activity_testing.jd
index 88ac9b2..8baa35d 100644
--- a/docs/html/tools/testing/activity_testing.jd
+++ b/docs/html/tools/testing/activity_testing.jd
@@ -242,7 +242,7 @@ parent.link=index.html
This changes when you run tests against the application. With instrumentation-based classes,
you can invoke methods against the UI of the application under test. The other test classes
don't allow this. To run an entire test method on the UI thread, you can annotate the thread
- with <code>@UIThreadTest</code>. Notice that this will run <em>all</em> of the method statements
+ with <code>@UiThreadTest</code>. Notice that this will run <em>all</em> of the method statements
on the UI thread. Methods that do not interact with the UI are not allowed; for example, you
can't invoke <code>Instrumentation.waitForIdleSync()</code>.
</p>