【问题标题】:Run unit test with robolectric get Resources$NotFoundException使用 robolectric 运行单元测试 get Resources$NotFoundException
【发布时间】:2017-02-03 22:08:54
【问题描述】:

官方演示无法正常运行。当我运行单元测试演示时,它在控制台中显示 android.content.res.Resources$NotFoundException: String resource ID #0x7f050000。

由于网络的原因,我不能使用 m2e 创建我的项目。但是我在另一台计算机上用 maven 下载了所有需要的 .jar 并将其复制到这台计算机上,然后将它们添加到 Eclipse IDE Java Build Path --> Library

这是我的源代码:

public class MainActivity extends Activity {
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    View button = findViewById(R.id.login);
    button.setOnClickListener(new View.OnClickListener() {
      public void onClick(View view) {
        startActivity(new Intent(MainActivity.this, LoginActivity.class));
      }
    });
  }
}

测试代码如下:

@RunWith(MyRunner.class)
public class MainActivityTest {
  @Test
  public void onCreateShouldInflateTheMenu() {
  Activity activity = Robolectric.setupActivity(MainActivity.class);

  final Menu menu = shadowOf(activity).getOptionsMenu();
  assertEquals("First menu item", menu.findItem(R.id.item1).getTitle());
  assertEquals("Second menu item", menu.findItem(R.id.item2).getTitle());
}

当我使用 junit test 运行测试用例时,它们会在“失败跟踪”中显示以下错误信息:

android.content.res.Resources$NotFoundException: String resource ID #0x7f050000
at android.content.res.Resources.getText(Resources.java:312)
at android.content.res.Resources.getString(Resources.java:400)
at android.content.Context.getString(Context.java:409)
at org.robolectric.util.ActivityController.getActivityTitle(ActivityController.java:113)
at org.robolectric.util.ActivityController.attach(ActivityController.java:61)
at org.robolectric.util.ActivityController.of(ActivityController.java:32)
at org.robolectric.Robolectric.buildActivity(Robolectric.java:92)
at org.robolectric.Robolectric.buildActivity(Robolectric.java:88)
at org.robolectric.Robolectric.setupActivity(Robolectric.java:96)
at com.example.activity.MainActivityTest.clickingLogin_shouldStartLoginActivity(MainActivityTest.java:35)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.robolectric.RobolectricTestRunner$HelperTestRunner$1.evaluate(RobolectricTestRunner.java:467)
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:250)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:176)
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:49)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:142)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
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:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)

我还尝试覆盖 RobolectricTestRunner 并添加 @Config 标记,但结果相同。 如何解决问题并成功运行演示?

【问题讨论】:

标签: java android eclipse unit-testing robolectric


【解决方案1】:

您必须在 build.gradle 模块配置中将 testOptions { unitTests { includeAndroidResources = true } } 添加到 android

【讨论】:

    【解决方案2】:

    它对我有用:

    android {
        ...
        testOptions {
            unitTests { includeAndroidResources = true }
        }
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多