summaryrefslogtreecommitdiffstats
path: root/docs/html/tools/testing
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-10-28 15:16:52 -0700
committerYorke Lee <yorkelee@google.com>2014-10-28 15:18:00 -0700
commit3df06ddd33a6c51813171951fd82b34f7039144d (patch)
treed0325c8339a6c1775b74e5504f4dbba8cd70344c /docs/html/tools/testing
parente8d9810cdef5b3e288f54f42adc3205532343406 (diff)
downloadframeworks_base-3df06ddd33a6c51813171951fd82b34f7039144d.zip
frameworks_base-3df06ddd33a6c51813171951fd82b34f7039144d.tar.gz
frameworks_base-3df06ddd33a6c51813171951fd82b34f7039144d.tar.bz2
Fix typo in activity_testing.jd
UIThreadTest -> UiThreadTest Change-Id: I32e8303b13c6631f12c974d464ec16f9dfca7071
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>