Android:Robolectric不支持API级别1

时间:2014-05-26 09:47:30

标签: android junit4 robolectric

这是我的基础测试课程:

@RunWith(RobolectricTestRunner.class)
public class MainActivityTest {
  @Before
  public void setup() {
    //do whatever is necessary before every test
  }

  @Test
  public void testActivityFound() {
    Activity activity = Robolectric.buildActivity(MainActivity.class).create().get();

    Assert.assertNotNull(activity);
  }
}

当我在Android Studio下使用终端窗口执行测试时,出现此错误:

java.lang.UnsupportedOperationException: Robolectric does not support API level 1, sorry!
at org.robolectric.SdkConfig.<init>(SdkConfig.java:24)
at org.robolectric.RobolectricTestRunner.pickSdkVersion(RobolectricTestRunner.java:320)
at org.robolectric.RobolectricTestRunner.getEnvironment(RobolectricTestRunner.java:296)
at org.robolectric.RobolectricTestRunner.access$300(RobolectricTestRunner.java:61)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:202)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:177)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)

Gradle信息:

compileSdkVersion 19
buildToolsVersion "19.0.1"

    minSdkVersion 14
    targetSdkVersion 19
    versionCode 2

androidTestCompile 'org.robolectric:robolectric:2.+'
androidTestCompile 'junit:junit:4.+'

我使用上一个Android Studio版本:0.5.8

谢谢你们!

3 个答案:

答案 0 :(得分:28)

有几种方法:

  1. AndroidManifest.xml targetSdkVersion
  2. 中指定
  3. 创建自定义RobolectricTestRunner并覆盖getAppManifest方法以指定目标sdk。例如:

    public class MyCustomRunner extends RobolectricTestRunner {
    
        @Override
        protected AndroidManifest getAppManifest(Config config) {
    
            String manifestPath = "your_manifest_path";
            String resPath = "your_res_path";
            return new AndroidManifest(Fs.fileFromPath(manifestPath), Fs.fileFromPath(resPath)) {
                @Override
                public int getTargetSdkVersion() {
                    return 18;
                }
            }; 
        }
    }
    

    然后在MainActivityTest的{​​{1}}课程中使用它。

  4. @RunWith(MyCustomRunner.class)课程的顶部使用@Config(emulateSdk=18)注释。

  5. 第三种方法是最简单的方法,但您必须注释所有测试类。我个人更喜欢第二种方法,因为它可以更灵活地配置跑步者。

答案 1 :(得分:15)

根据Andrei的回答,我试图解决我的问题,但实际上我认为@Config(emulateSdk = 18)已被删除,这就解决了我的问题:

@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class
     , sdk = 21)
   public class SplashActivityTest {
  ......
  }

答案 2 :(得分:4)

Mac用户须知

如果您使用的是Mac,则可能需要配置默认的JUnit测试运行器配置,以便解决IntelliJ / Android Studio未将工作目录设置为正在测试的模块的错误。这可以通过编辑运行配置来实现,默认值 - &gt; JUnit并将工作目录值更改为 $ MODULE_DIR $

设定:

@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class)
public class FooTest {
}

https://github.com/robolectric/robolectric/wiki/Running-tests-in-Android-Studio