From acb3eb39dad3c3d85cc7d6f3d6eebddb60d4c7a0 Mon Sep 17 00:00:00 2001 From: Mary Yanchar Date: Wed, 14 Sep 2016 15:33:29 -0700 Subject: [PATCH] Small change for new sample test code Making a very small change to mention the example instrumented tests, since the new code now matches the setup described in this tutorial. Bug: 28932254 Change-Id: I1bcaa858a1e51609f0ab2863e2738f7aed96c01a --- .../training/testing/unit-testing/instrumented-unit-tests.jd | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/html/training/testing/unit-testing/instrumented-unit-tests.jd b/docs/html/training/testing/unit-testing/instrumented-unit-tests.jd index df8b1bc5c9a67..dc94bdf05502c 100644 --- a/docs/html/training/testing/unit-testing/instrumented-unit-tests.jd +++ b/docs/html/training/testing/unit-testing/instrumented-unit-tests.jd @@ -53,8 +53,9 @@ you choose, to simulate any dependency relationships.

In your Android Studio project, you must store the source files for instrumented tests at -module-name/src/androidTests/java/. This directory -already exists when you create a new project.

+module-name/src/androidTest/java/. This directory +already exists when you create a new project and contains an example +instrumented test.

Before you begin, you should download