diff options
| author | 2015-09-28 11:21:18 +0100 | |
|---|---|---|
| committer | 2015-09-28 11:21:18 +0100 | |
| commit | abe8ecf4ac4e036a408cd949138f002f7faabc4f (patch) | |
| tree | 064d2d575510549dbfbb1b4a700e8f60dee2a0ae | |
| parent | e25b3fa17880a97d5bcfc160ad4a2804775df23d (diff) | |
Fix dependencies block in "Building Local Unit Tests"
Change-Id: I47c10cd7013bfacc8285d21fcae35c2a77621fcc
| -rw-r--r-- | docs/html/training/testing/unit-testing/local-unit-tests.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/training/testing/unit-testing/local-unit-tests.jd b/docs/html/training/testing/unit-testing/local-unit-tests.jd index 421709beaacc..caebe4505620 100644 --- a/docs/html/training/testing/unit-testing/local-unit-tests.jd +++ b/docs/html/training/testing/unit-testing/local-unit-tests.jd @@ -72,7 +72,7 @@ dependencies { // Set this dependency if you want to use Mockito testCompile 'org.mockito:mockito-core:1.10.19' // Set this dependency if you want to use Hamcrest matching - androidTestCompile 'org.hamcrest:hamcrest-library:1.1' + testCompile 'org.hamcrest:hamcrest-library:1.1' } </pre> </li> @@ -299,4 +299,4 @@ command with the {@code --continue} option.</p> <p>If there are failing tests, the command will display links to HTML reports (one per build variant). You can find the generated HTML test result reports in the {@code <path_to_your_project>/app/build/reports/tests/} directory, and the corresponding XML -files in the {@code <path_to_your_project>/app/build/test-results/} directory.</p>
\ No newline at end of file +files in the {@code <path_to_your_project>/app/build/test-results/} directory.</p> |