RobolectricTestRunner可用于mock Android SDK中的classes,从而解决Android Unit Test无法使用Android SDK的问题。
其使用方法如下:
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;
@RunWith(RobolectricTestRunner.class)
@Config(sdk = { 21 })
public class TestClassName {
@Before
public void setUp() throws Exception {
...
}
@After
public void tearDown() throws Exception {
...
}
@Test
public void testMethod1() throws Exception {
...
}
...
}