Skip to content

Commit 2cb1bbd

Browse files
committed
Remove unused libraries and obsolete instructions from build.gradle and README.md
1 parent eb90ed5 commit 2cb1bbd

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

runner/AndroidTestOrchestratorWithTestCoverageSample/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,10 @@ This project uses the Gradle build system. You don't need an IDE to build and ex
1414
1. Check out the relevant code:
1515
* The application under test is located in `src/main/java`
1616
* Tests are in `src/androidTest/java`
17-
1. Create the test configuration with a custom runner: `androidx.test.runner.AndroidJUnitRunner`
18-
* Open *Run* menu | *Edit Configurations*
19-
* Add a new *Android Tests* configuration
20-
* Choose a module
21-
* Add a *Specific instrumentation runner*: `androidx.test.runner.AndroidJUnitRunner`
22-
1. Connect a device or start an emulator
17+
1. Connect a device or start an emulator:
2318
* Turn animations off.
2419
(On your device, under Settings->Developer options disable the following 3 settings: "Window animation scale", "Transition animation scale" and "Animator duration scale")
25-
1. Run the newly created configuration
20+
1. Run the newly created configuration.
2621

2722
The application will be started on the device/emulator and a series of actions will be performed automatically.
2823

runner/AndroidTestOrchestratorWithTestCoverageSample/app/build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@ android {
1919
testCoverageEnabled true
2020
}
2121
}
22-
23-
useLibrary 'android.test.runner'
24-
25-
useLibrary 'android.test.base'
26-
useLibrary 'android.test.mock'
27-
2822
testOptions {
2923
execution 'ANDROIDX_TEST_ORCHESTRATOR'
3024
}

0 commit comments

Comments
 (0)