diff options
Diffstat (limited to 'docs/html/tools/testing/index.jd')
| -rw-r--r-- | docs/html/tools/testing/index.jd | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/html/tools/testing/index.jd b/docs/html/tools/testing/index.jd new file mode 100644 index 0000000..56de4cf --- /dev/null +++ b/docs/html/tools/testing/index.jd @@ -0,0 +1,40 @@ +page.title=Testing +@jd:body + +<p> The Android framework includes an integrated testing framework that helps you test all aspects +of your application and the SDK tools include tools for setting up and running test applications. +Whether you are working in Eclipse with ADT or working from the command line, the SDK tools help you +set up and run your tests within an emulator or the device you are targeting. </p> + +<p>If you aren't yet familiar with the Android testing framework, start by reading <a +href="{@docRoot}tools/testing/testing_android.html">Testing Fundamentals</a>. For a step-by-step +introduction to Android testing, try the <a +href="{@docRoot}tools/testing/activity_test.html">Activity Testing Tutorial</a>. </p> + + + +<div class="landing-docs"> + + <div class="col-13" style="margin-left:0"> + <h3>Blog Articles</h3> + + <a href="http://android-developers.blogspot.com/2010/12/new-gingerbread-api-strictmode.html"> + <h4>New Gingerbread API: StrictMode</h4> + <p>StrictMode is a new API in Gingerbread which primarily lets you set a policy on a thread +declaring what you’re not allowed to do on that thread, and what the penalty is if you violate the +policy. Implementation-wise, this policy is simply a thread-local integer bitmask.</p> + </a> + + <a href="http://android-developers.blogspot.com/2010/10/traceview-war-story.html"> + <h4>Traceview War Story</h4> + <p>I recently took my first serious look at Traceview, and it occurred to me, first, that +there are probably a few other Android developers who haven’t used it and, second, that this is an +opportunity to lecture sternly on one of my favorite subjects: performance improvement and +profiling.</p> + </a> + </div> + + +</div> + + |
