2013-10-19 73 views
3

我收到以下錯誤與roboelectric 2.2Roboelectric 2.2錯誤

java.lang.IncompatibleClassChangeError: class org.objectweb.asm.tree.ClassNode has interface org.objectweb.asm.ClassVisitor as super class 
    at java.lang.ClassLoader.defineClass1(Native Method) 
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631) 
    at java.lang.ClassLoader.defineClass(ClassLoader.java:615) 
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141) 
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:283) 
    at java.net.URLClassLoader.access$000(URLClassLoader.java:58) 
    at java.net.URLClassLoader$1.run(URLClassLoader.java:197) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306) 
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247) 
    at org.robolectric.RobolectricTestRunner.createRobolectricClassLoader(RobolectricTestRunner.java:144) 
    at org.robolectric.RobolectricTestRunner.createSdkEnvironment(RobolectricTestRunner.java:116) 
    at org.robolectric.RobolectricTestRunner$3.create(RobolectricTestRunner.java:279) 
    at org.robolectric.EnvHolder.getSdkEnvironment(EnvHolder.java:21) 
    at org.robolectric.RobolectricTestRunner.getEnvironment(RobolectricTestRunner.java:277) 
    at org.robolectric.RobolectricTestRunner.access$100(RobolectricTestRunner.java:57) 
    at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:188) 
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263) 
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68) 
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47) 
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231) 
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60) 
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229) 
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50) 
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222) 
    at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:175) 
    at org.junit.runners.ParentRunner.run(ParentRunner.java:300) 
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50) 
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) 
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) 
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) 
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) 
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197) 

我使用本網站http://www.androiddevelopersolution.com/2013/03/android-unit-testing-with-robolectric.html

我正在使用的應用程序在Android JAR文件和測試項目配置。有什麼建議麼?謝謝。

回答

4

這看起來像您正在使用JDK 1.7版來編譯和運行您的Robolectric測試。 JDK 1.7與Robolectric不兼容,可能會導致類似於您所看到的問題。

+0

謝謝。我會嘗試與java6。當然,回到mac6上的java6是一團糟:(也許我可以用JAVA_HOME指向它,謝謝你的回答。 –

3

您可能在舊版本asm(低於版本4)的某處存在依賴關係。確保你從構建路徑中排除它,因爲Robolectric只能使用4個。

就我而言,這是Guice的一個版本。

6

是的,我有同樣的問題,asm版本問題,因爲@thoutisbeckers說。試試這個:

dependencies { 
    androidTestCompile 'org.robolectric:robolectric:2.+' 
    androidTestCompile 'junit:junit:4.+' 
    compile 'org.ow2.asm:asm:4.0' 
    compile ('org.roboguice:roboguice:2.0') { 
     exclude module: 'asm' 
    } 
}