gpt4 book ai didi

android - 机器人 + Maven

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:27:16 25 4
gpt4 key购买 nike

我不熟悉将 Robolectric 与 Maven 结合用于 Android 项目。

这是测试用例(它并没有真正做任何事情)

@RunWith(RobolectricTestRunner.class)
public class UTest {

private SplashActivity mActivity;

@Before
public void setUp() throws Exception {
mActivity = Robolectric.buildActivity(SplashActivity.class).create().get();
ProgressBar bar = (ProgressBar) mActivity.findViewById(R.id.signInProgress);
}



@Test
public void testingMe() throws Exception {

}
}

但是,当使用目标测试针对 maven 运行时,出现以下异常:

   java.lang.IllegalStateException: immutable!
at org.robolectric.res.ResBundle$ResMap.merge(ResBundle.java:128)
at org.robolectric.res.ResBundle$ResMap.access$100(ResBundle.java:116)
at org.robolectric.res.ResBundle.mergeLibraryStyle(ResBundle.java:88)
at org.robolectric.res.OverlayResourceLoader.doInitialize(OverlayResourceLoader.java:26)
at org.robolectric.res.XResourceLoader.initialize(XResourceLoader.java:29)
at org.robolectric.res.XResourceLoader.getValue(XResourceLoader.java:53)
at org.robolectric.res.OverlayResourceLoader.getValue(OverlayResourceLoader.java:58)
at org.robolectric.res.RoutingResourceLoader.getValue(RoutingResourceLoader.java:31)
at org.robolectric.shadows.ShadowAssetManager.getAndResolve(ShadowAssetManager.java:263)
at org.robolectric.shadows.ShadowAssetManager.getAndResolve(ShadowAssetManager.java:259)
at org.robolectric.shadows.ShadowAssetManager.getResourceText(ShadowAssetManager.java:62)
at android.content.res.AssetManager.getResourceText(AssetManager.java)
at android.content.res.Resources.getText(Resources.java:225)
at android.content.res.Resources.getString(Resources.java:313)
at ****.loadRestServerUrl(****.java:417)
at ****.onCreate(****.java:201)
at org.robolectric.internal.ParallelUniverse.setUpApplicationState(ParallelUniverse.java:146)
at org.robolectric.RobolectricTestRunner.setUpApplicationState(RobolectricTestRunner.java:387)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:227)
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)
at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:264)
at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:153)
at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:124)
at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200)
at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153)
at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103)

有人知道问题出在哪里吗?我正在使用 Robolectric 2.1.1。

最佳答案

这是一个多线程访问资源的问题,导致 Robolectric 尝试并发加载资源。

我在 https://github.com/robolectric/robolectric/pull/2353 中修复了这个问题.如果你使用最新的快照,它应该可以工作,或者你可以等待 3.1 版本。

作为临时措施,如果您只是在 Application#onCreate() 中强制加载资源(例如通过调用 getString(R.string.whatever)或一些在创建任何其他线程之前将运行的其他方法,它将确保在多个线程尝试使用它们之前加载资源。

关于android - 机器人 + Maven,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18041242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com