commit | d2fbc37b8f718a753d6a2e773e9049b67e2297d1 | [log] [tgz] |
---|---|---|
author | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Sep 09 17:30:58 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Sep 09 17:30:58 2021 +0000 |
tree | 054f0686623e50209b8e2a88c5b53ecefb6c1dab | |
parent | 683d53b4c06f59e1e81ec9e94855ab0b28b69be1 [diff] | |
parent | d6861eb23353ebba2424d7474e5b01bdd0fa6370 [diff] |
Merge "[automerger skipped] Add implementation for UserManager#getAllProfiles am: 35fd431402 am: 67c96a8a3a -s ours" into sc-dev am: 0b02737bb3 -s ours am: b4e2dd7b36 -s ours am: cb09b24801 -s ours am: d6861eb233 -s ours am skip reason: Merged-In I7a1893feddf7dadaec30bbffc216b1c41bbd2618 with SHA-1 4abcd18c33 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/robolectric-shadows/+/15454157 Change-Id: Id89e9d7fa4cf849e3793e3c022648597009c8cf6
Robolectric is the industry-standard unit testing framework for Android. With Robolectric, your tests run in a simulated Android environment inside a JVM, without the overhead of an emulator.
Here's an example of a simple test written using Robolectric:
@RunWith(RobolectricTestRunner.class) public class MyActivityTest { @Test public void clickingButton_shouldChangeResultsViewText() throws Exception { Activity activity = Robolectric.setupActivity(MyActivity.class); Button button = (Button) activity.findViewById(R.id.press_me_button); TextView results = (TextView) activity.findViewById(R.id.results_text_view); button.performClick(); assertThat(results.getText().toString(), equalTo("Testing Android Rocks!")); } }
For more information about how to install and use Robolectric on your project, extend its functionality, and join the community of contributors, please visit http://robolectric.org.
If you'd like to start a new project with Robolectric tests you can refer to deckard
(for either maven or gradle) as a guide to setting up both Android and Robolectric on your machine.
testImplementation "org.robolectric:robolectric:4.1"
Robolectric is built using Gradle. Both IntelliJ and Android Studio can import the top-level build.gradle
file and will automatically generate their project files from it.
You will need to have portions of the Android SDK available in your local Maven artifact repository in order to build Robolectric. Copy all required Android dependencies to your local Maven repo by running:
./scripts/install-dependencies.rb
Note: You'll need Maven installed, ANDROID_HOME
set and to have the SDK and Google APIs for API Level 27 downloaded to do this.
Robolectric supports running tests against multiple Android API levels. The work it must do to support each API level is slightly different, so its shadows are built separately for each. To build shadows for every API version, run:
./gradlew clean assemble install compileTest
If you would like to live on the bleeding edge, you can try running against a snapshot build. Keep in mind that snapshots represent the most recent changes on master and may contain bugs.
repositories { maven { url "https://oss.sonatype.org/content/repositories/snapshots" } } dependencies { testImplementation "org.robolectric:robolectric:4.2-SNAPSHOT" }