ClassCastException:NoClassDefFoundError无法强制转换为RuntimeException

时间:2014-12-19 21:32:10

标签: android gradle android-gradle robolectric robolectric-gradle-plugin

我正在努力将我的代码库升级到Gradle 2.2和Android Studio 1.0。我目前正在尝试让Robolectric 2.4工作,但是当我尝试运行单元测试时,我遇到了一个奇怪的问题。问题仅在gradle clean之后发生;多次运行测试套件将产生通过测试(如预期的那样)。当我在干净后运行测试时,我收到以下错误:

java.lang.ClassCastException: java.lang.NoClassDefFoundError cannot be cast to java.lang.RuntimeException

我已将错误追溯到此次调用:

Activity activity = Robolectric.setupActivity(MainActivity.class);

我是否使用Robolectric gradle插件(org.robolectric:robolectric-gradle-plugin:0.14.0)或JC和K Android单元测试插件(com.github.jcandksolutions.gradle:android-unit-test:2.1.1)时遇到此错误。

我在Robolectric Github上发现了这个问题,但它看起来还没有得到解决: https://github.com/robolectric/robolectric/issues/1385

这个问题也在android studio单元测试插件中引用,在'Trouble Shooting'下: https://github.com/evant/android-studio-unit-test-plugin

我目前的示例代码在这里: https://github.com/KioKrofovitch/robolectric-upgrade-test

我已经能够在Robolectric样本上运行api-android-16项目,但没有看到这个问题,尽管api-android-19和api-android-21项目由于其他原因而失败。我看不出他们做了什么不同的事情,这样他们就不会失败。 https://github.com/robolectric/robolectric-samples

有没有人找到解决方法?对Jenkins或Travis等CI工具来说,运行测试两次不是一个好的解决方法。

编辑:嵌入代码示例

我的顶级build.gradle,我添加了JC和K Unit测试库:

buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
        classpath 'com.github.jcandksolutions.gradle:android-unit-test:2.1.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

我的项目级build.gradle,我在其中添加了robolectric:

apply plugin: 'com.android.application'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.example.robolectrictest"
        minSdkVersion 15
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    sourceSets {
        main {
            jniLibs.srcDirs = ['libs']
        }

        androidTest {
            setRoot('src/androidTest')
        }
    }
}

// Must be after Android plugin
apply plugin: 'android-unit-test'

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'

    //androidTestCompile 'junit:junit:4.10'
    //androidTestCompile 'org.robolectric:robolectric:2.4'

    // Testing frameworks
    testCompile 'junit:junit:4.10'
    testCompile 'org.robolectric:robolectric:2.4'
}

我的基本活动,一切都在模板创建时留下了:

public class MainActivity extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

我的虚拟测试,由于setupActivity()方法错误,我无法访问我的断言:

@Config(emulateSdk = 18)
@RunWith(RobolectricTestRunner.class)

public class ApplicationTest {

    @org.junit.Test
    public void testDummy() throws Exception {

        Activity activity = Robolectric.setupActivity(MainActivity.class);

        assertTrue(true);
    }

}
编辑#2:编辑#2: 要运行测试,我从项目的顶级目录中调用以下命令:

./gradlew clean
./gradlew test

我也尝试在gradle包装器外运行测试,并获得相同的结果

gradle clean
gradle test

3 个答案:

答案 0 :(得分:13)

这被证实是Robolectric 2.4的问题(问题#1385)。 Erich Douglass今天已经关闭了这个问题,并发表了以下评论:

  

我们正致力于3.0的appcompat支持。在那之前,没有   你能做的很多。

https://github.com/robolectric/robolectric/issues/1385

因此,在3.0发布之前,我将使用以下解决方法:

./gradlew clean
./gradlew assemble
./gradlew test

组装完成后,它已经创建了Robolectric显然需要的所有项目。然后,您可以成功运行测试。此解决方案比仅运行./gradlew build./gradlew test两次更好,因为它既可以在本地实现,也可以在Travis或Jenkins等CI工具上实现。在Jenkins中运行多个Gradle任务的语法是在每个任务之间留下一个空格:

assemble test

答案 1 :(得分:1)

将Android Gradle Plugin从1.1.0升级到1.1.3后,异常消失了。其他人可以证实这一点吗? 我正在使用此处描述的设置:http://nenick-android.blogspot.de/2015/02/android-studio-110-beta-4-and.html

答案 2 :(得分:0)

我的问题已经解决。我将我的robolectirc更新为2.4并将SDK更新为19并将android支持更新为com.android.support:support-v13:19.1.0。并且还对iml文件进行了相同的更改。

感谢您的指导和回应

Venkatraman