热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

NopackageIDfoundResources$NotFoundExceptionStringnotfound

DescriptionHello.IconstructedasimpleJUnittestwhichtriestogetast


Description

Hello. I constructed a simple JUnit test which tries to get a string from strings.xml (just to see if Robolectric works for my project) like this:

1
2
3
4
5
6
7
8
9
10
java

(RobolectricTestRunner.class)

public class RoboStringTest {



    public void getStringFromResources() {

        Context context = RuntimeEnvironment.systemContext;

        String actual = context.getString(R.string.error);

        assertEquals("Error", actual);

    }

}

But it throws an exception:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
No package ID 7f found for ID 0x7f0e005d.



android.content.res.Resources$NotFoundException: String resource ID #0x7f0e005d



    at android.content.res.Resources.getText(Resources.java:348)

    at android.content.res.Resources.getString(Resources.java:441)

    at android.content.Context.getString(Context.java:578)

    at com.cookedapps.android.dronescout.RoboStringTest.getStringFromResources(RoboStringTest.java:21)

    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)

    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)

    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)

    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)

    at org.robolectric.RobolectricTestRunner$HelperTestRunner$1.evaluate(RobolectricTestRunner.java:600)

    at org.robolectric.internal.SandboxTestRunner$2.evaluate(SandboxTestRunner.java:260)

    at org.robolectric.internal.SandboxTestRunner.runChild(SandboxTestRunner.java:130)

    at org.robolectric.internal.SandboxTestRunner.runChild(SandboxTestRunner.java:42)

    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)

    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)

    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)

    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)

    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)

    at org.robolectric.internal.SandboxTestRunner$1.evaluate(SandboxTestRunner.java:84)

    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)

    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)

    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)

    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)

    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)

    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

    at com.intellij.rt.execution.application.AppMainV2.main(AppMainV2.java:131)

I read every Github issue or Stackoverflow question regarding this problem but all provided solutions did not work for me.

Disabling AAPT2 with

1
android.enableAapt2=false

resulted in the same exception but i think this should not be a problem with Robolectric 4.

What I find interesting is the message

1
"No package ID 7f found for ID 0x7f0e005d."

. This stays the same for ever string I try to get. I don't understand this message. Does it mean that strings.xml could not be found?

What I have tried


  • Added
    1
    testOptions.unitTests.includeAndroidResources = true

    to my

    1
    build.gradle


  • Added
    1
    android.enableUnitTestBinaryResources=true

    to my

    1
    gradle.properties


  • Checked my JUnit Run Config (I am on Linux), Working dir is set to
    1
    $MODULE_DIR$


  • Switched my project to AndroidX

Robolectric & Android Version

Robolectric: 4.0.2
Robolectric-Multidex: 4.0.2
Sdk: 28
BuildTools: 28.0.3
Gradle: 3.2.1
AS: 3.2.1
on Linux Mint 18

该提问来源于开源项目:robolectric/robolectric

Have you tried adding




1
testImplementation 'androidx.test:core:1.0.0'

to the build gradle and then using

1
ApplicationProvider.getApplicationContext();

to get context. I was able to perform file operations with this





   



推荐阅读
  • ListView简单使用
    先上效果:主要实现了Listview的绑定和点击事件。项目资源结构如下:先创建一个动物类,用来装载数据:Animal类如下:packagecom.example.simplelis ... [详细]
  • 本文介绍了如何使用JFreeChart库创建一个美观且功能丰富的环形图。通过设置主题、字体和颜色等属性,可以生成符合特定需求的图表。 ... [详细]
  • 本文介绍了如何通过Java代码计算一个整数的位数,并展示了多个基础编程示例,包括求和、平均分计算、条件判断等。 ... [详细]
  • 本题要求在一组数中反复取出两个数相加,并将结果放回数组中,最终求出最小的总加法代价。这是一个经典的哈夫曼编码问题,利用贪心算法可以有效地解决。 ... [详细]
  • 主调|大侠_重温C++ ... [详细]
  • 本文详细探讨了Java中的ClassLoader类加载器的工作原理,包括其如何将class文件加载至JVM中,以及JVM启动时的动态加载策略。文章还介绍了JVM内置的三种类加载器及其工作方式,并解释了类加载器的继承关系和双亲委托机制。 ... [详细]
  • springMVC JRS303验证 ... [详细]
  • 烤鸭|本文_Spring之Bean的生命周期详解
    烤鸭|本文_Spring之Bean的生命周期详解 ... [详细]
  • 本文介绍了如何使用Java代码在Android设备上检测特定应用程序是否已安装。通过创建一个Intent并利用PackageManager查询该Intent的可用性来实现这一功能。 ... [详细]
  • 本文详细介绍了Java中的注解功能,包括如何定义注解类型、设置注解的应用范围及生命周期,并通过具体示例展示了如何利用反射机制访问注解信息。 ... [详细]
  • 深入解析Java多线程与并发库的应用:空中网实习生面试题详解
    本文详细探讨了Java多线程与并发库的高级应用,结合空中网在挑选实习生时的面试题目,深入分析了相关技术要点和实现细节。文章通过具体的代码示例展示了如何使用Semaphore和SynchronousQueue来管理线程同步和任务调度。 ... [详细]
  • KMP算法是处理字符串匹配的一种高效算法它首先用O(m)的时间对模板进行预处理,然后用O(n)的时间完成匹配。从渐进的意义上说,这样时间复 ... [详细]
  • Java 中重写与重载的区别
    本文详细解析了 Java 编程语言中重写(Override)和重载(Overload)的概念及其主要区别,帮助开发者更好地理解和应用这两种多态性机制。 ... [详细]
  • 本文详细介绍了Java库XChart中的XYSeries类下的setLineColor()方法,并提供了多个实际应用场景的代码示例。 ... [详细]
  • 本文详细解析了2019年西安邀请赛中的一道树形动态规划题目——J题《And And And》。题目要求计算树中所有子路径异或值为0的集合数量,通过深入分析和算法优化,提供了高效的解决方案。 ... [详细]
author-avatar
手机用户2502855477
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有