Files
frameworks_base/docs/html/tools/testing/index.jd
Quddus Chong e3f6c81c31 docs: Refactor testing docs to remove/update obsolete guidance:
* Added new 'Getting Started with Testing' training to contain common
      information on how to configure and run tests with Android Studio.
  * Removed the obsolete 'Testing Your Activity' training.
  * Deleted obsolete testing content under 'Tools > Workflow'.
  * Moved accessibility testing checklist to 'Implementing accessibility'
      training section.
  * Moved content provider and service testing topics into a new
     'Testing App Integrations' training.
  * Updated the service testing training to reflect our recommended
approach of using ServiceTestRule, instead of ServiceTestCase.
  * Renamed 'Testing from Other IDEs' topic to
     'Testing from the Command Line' and moved it under 'Testing Tools'.
  * Revised 'Testing Fundamentals' topic and moved it under 'Testing Tools'.
  * Updated the landing page fo 'Best Practises for Testing' to provide a
     central location for testing-related resources.
bug: 20722624

Change-Id: Ic1cbc79b48916dcae1c09bf5114ba8aef13d6f27
2016-01-14 05:02:18 -08:00

20 lines
1.0 KiB
Plaintext

page.title=Testing
@jd:body
<p>Android provides an integrated testing framework that helps you test all aspects
of your app. The Android <a href="{@docRoot}sdk/installing/index.html">SDK</a> and
<a href="{@docRoot}tools/testing-support-library/index.html">Testing Support Library</a> include
tools and APIs for setting up and running test apps within an emulator or on the device you are
targeting. You can build and execute tests whether you are working in Android Studio or working
from the command line.</p>
<p>To familiarize yourself with mobile app testing in Android, start by reading these resources:</p>
<ul>
<li><a href="{@docRoot}tools/testing/testing_android.html">Testing Concepts</a>: Learn key
concepts related to Android app testing and get an overview of the testing tools and APIs
that Google provides.</li>
<li><a href="{@docRoot}training/testing/start/index.html">Getting Started with Testing</a>: Learn
how to build and run your tests, step-by-step, using the testing APIs and tools that
Google provides.</li>
</ul>