1

Google Volley ライブラリを使用しているプロジェクトで roboelectric を実行しようとしていますが、単純な文字列チェックでテスト プロジェクトを実行しようとすると、同じエラーが発生し続けます

java.lang.RuntimeException: java.lang.ClassNotFoundException: com.android.volley.R
    at org.robolectric.AndroidManifest.getRClass(AndroidManifest.java:79)
    at org.robolectric.AndroidManifest.getResourcePath(AndroidManifest.java:233)
    at org.robolectric.AndroidManifest.getIncludedResourcePaths(AndroidManifest.java:238)
    at org.robolectric.AndroidManifest.getIncludedResourcePaths(AndroidManifest.java:240)
    at org.robolectric.RobolectricTestRunner.createAppResourceLoader(RobolectricTestRunner.java:422)
    at org.robolectric.RobolectricTestRunner.getAppResourceLoader(RobolectricTestRunner.java:411)
    at org.robolectric.RobolectricTestRunner.setupApplicationState(RobolectricTestRunner.java:188)
    at org.robolectric.RobolectricTestRunner.internalBeforeTest(RobolectricTestRunner.java:134)
    at org.robolectric.RobolectricTestRunner.methodBlock(RobolectricTestRunner.java:92)
    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.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)
Caused by: java.lang.ClassNotFoundException: com.android.volley.R
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at org.robolectric.AndroidManifest.getRClass(AndroidManifest.java:77)
    ... 22 more

私のプロジェクトは Android ターゲット SDK 16 を使用しています。

ありがとう。

4

2 に答える 2

0

この例外は、volley ライブラリを削除し、Volley.jar ファイルをその bin フォルダーからメイン プロジェクトの libs フォルダーにコピーし、それをビルド パスに追加することで解決されました。

于 2013-07-09T12:29:28.837 に答える