Home | History | Annotate | only in /external/robolectric-shadows
Up to higher level directory
NameDateSize
.github/21-Aug-2018
.travis.yml21-Aug-20181.8K
Android.mk21-Aug-20185.8K
annotations/21-Aug-2018
build.gradle21-Aug-20183.7K
buildSrc/21-Aug-2018
circle.yml21-Aug-20181.7K
CODE_OF_CONDUCT.md21-Aug-20183.2K
gradle/21-Aug-2018
gradle.properties21-Aug-201847
gradlew21-Aug-20185.2K
gradlew.bat21-Aug-20182.2K
images/21-Aug-2018
integration_tests/21-Aug-2018
java-timeout21-Aug-20183.3K
junit/21-Aug-2018
LICENSE21-Aug-20181.1K
list_failed.sh21-Aug-2018737
MODULE_LICENSE_MIT21-Aug-20180
NOTICE21-Aug-20181.1K
processor/21-Aug-2018
README.md21-Aug-20183.1K
report-internal.mk21-Aug-20182.1K
resources/21-Aug-2018
robolectric/21-Aug-2018
robotest-internal.mk21-Aug-20183.9K
robotest.sh21-Aug-20184.3K
run_robolectric_module_tests.mk21-Aug-20185.2K
run_robotests.mk21-Aug-20188.5K
sandbox/21-Aug-2018
scripts/21-Aug-2018
settings.gradle21-Aug-2018558
shadowapi/21-Aug-2018
shadows/21-Aug-2018
src/21-Aug-2018
utils/21-Aug-2018
wrapper.sh21-Aug-20182.5K
wrapper_test.sh21-Aug-20183.3K

README.md

      1 <a name="README">[<img src="https://rawgithub.com/robolectric/robolectric/master/images/robolectric-horizontal.png"/>](http://robolectric.org)</a>
      2 
      3 [![Build Status](https://travis-ci.org/robolectric/robolectric.svg?branch=master)](https://travis-ci.org/robolectric/robolectric)
      4 [![GitHub release](https://img.shields.io/github/release/robolectric/robolectric.svg?maxAge=60)](https://github.com/robolectric/robolectric/releases)
      5 
      6 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.
      7 
      8 ## Usage
      9 
     10 Here's an example of a simple test written using Robolectric:
     11 
     12 ```java
     13 @RunWith(RobolectricTestRunner.class)
     14 @Config(constants = BuildConfig.class)
     15 public class MyActivityTest {
     16 
     17   @Test
     18   public void clickingButton_shouldChangeResultsViewText() throws Exception {
     19     Activity activity = Robolectric.setupActivity(MyActivity.class);
     20 
     21     Button button = (Button) activity.findViewById(R.id.press_me_button);
     22     TextView results = (TextView) activity.findViewById(R.id.results_text_view);
     23 
     24     button.performClick();
     25     assertThat(results.getText().toString(), equalTo("Testing Android Rocks!"));
     26   }
     27 }
     28 ```
     29 
     30 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](http://robolectric.org).
     31 
     32 ## Install
     33 
     34 ### Starting a New Project
     35 
     36 If you'd like to start a new project with Robolectric tests you can refer to `deckard` (for either [maven](http://github.com/robolectric/deckard-maven) or [gradle](http://github.com/robolectric/deckard-gradle)) as a guide to setting up both Android and Robolectric on your machine.
     37 
     38 #### build.gradle:
     39 
     40 ```groovy
     41 testCompile "org.robolectric:robolectric:3.6.1"
     42 ```
     43 
     44 ## Building And Contributing
     45 
     46 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.
     47 
     48 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:
     49 
     50     ./scripts/install-dependencies.rb
     51 
     52 *Note*: You'll need Maven installed, `ANDROID_HOME` set and to have the SDK and Google APIs for API Level 23 downloaded to do this.
     53 
     54 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:
     55 
     56     ./gradlew clean assemble install compileTest
     57 
     58 ### Using Snapshots
     59 
     60 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.
     61 
     62 #### build.gradle:
     63 
     64 ```groovy
     65 repositories {
     66     maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
     67 }
     68 
     69 dependencies {
     70     testCompile "org.robolectric:robolectric:3.7-SNAPSHOT"
     71 }
     72 ```
     73