Integrating Robolectric 3 with Android Studio 2
dependencies { | |
testCompile 'junit:junit:4.12' | |
testCompile 'org.robolectric:robolectric:3.0' | |
} |
package com.greenlifesoftware.robolectricpractice; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import org.robolectric.Robolectric; | |
import org.robolectric.RobolectricGradleTestRunner; | |
import org.robolectric.annotation.Config; | |
import static org.junit.Assert.assertNotNull; | |
@RunWith(RobolectricGradleTestRunner.class) | |
@Config(constants = BuildConfig.class, sdk = 21) | |
public class RobolectricActivityTest | |
{ | |
@Test | |
public void shouldNotBeNull() | |
{ | |
RobolectricActivity activity = Robolectric.setupActivity( RobolectricActivity.class ); | |
assertNotNull(activity); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
I tried running, but it is not working. Check this.