- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试在 Android Studio 中运行测试,测试设置抛出 java.lang.NoSuchMethodError
测试:
@RunWith(AndroidJUnit4.class)
@LargeTest
public class MusicLocalDataSourceTest {
private Context context;
private final static String TITLE_1 = "TITLE 1";
private final static String ID_1 = "1";
private final static String ARTISTIC_1 = "ARTISTIC 1";
private DataSource<Music> mMusicDataSource;
private StapeDatabase mDatabase;
@Before
public void setup() {
context = InstrumentationRegistry.getTargetContext();
mDatabase = Room
.inMemoryDatabaseBuilder(context, StapeDatabase.class)
.build();
IEMusicDao dao = mDatabase.musicDao();
MusicLocalDataSource.clearInstance(); // throws error
mMusicDataSource = MusicLocalDataSource.getInstance(new SingleExecutor(), dao);
}
@After
public void cleanUp() {
mDatabase.close();
MusicLocalDataSource.clearInstance();
}
@Test
public void should_not_have_null_instance() {
assertNotNull(mMusicDataSource);
}
}
classe que estou testando:
class being tested:
public class MusicLocalDataSource implements IEMusicDataSource<Music> {
private static volatile MusicLocalDataSource INSTANCE;
private IEMusicDao musicDao;
private AppExecutors appExecutors;
private MusicLocalDataSource(@NonNull AppExecutors appExecutors, @NonNull IEMusicDao musicDao) {
this.appExecutors = appExecutors;
this.musicDao = musicDao;
}
public static MusicLocalDataSource getInstance(@NonNull AppExecutors appExecutors, @NonNull
IEMusicDao musicDao) {
if (INSTANCE == null) {
synchronized (MusicLocalDataSource.class) {
if (INSTANCE == null) {
INSTANCE = new MusicLocalDataSource(appExecutors, musicDao);
}
}
}
return INSTANCE;
}
@Override
public void findAll(@NonNull LoadDataCallback<Music> callback) {
Runnable runnable = () -> {
final List<Music> musics = musicDao.findAll();
this.appExecutors.mainThread().execute(() -> {
if (musics.isEmpty()) {
callback.onDataNotAvailable();
} else {
callback.onDataLoaded(musics);
}
});
};
appExecutors.diskIO().execute(runnable);
}
@Override
public void findById(@NonNull String dataId, @NonNull GetDataCallback<Music> callback) {
Runnable runnable = () -> {
final Music music = musicDao.findMusicById(dataId);
appExecutors.mainThread().execute(() -> {
if(music != null) {
callback.onDataLoaded(music);
} else {
callback.onDataNotAvailable();
}
});
};
appExecutors.diskIO().execute(runnable);
}
@Override
public void save(@NonNull Music data) {
}
@Override
public void update(@NonNull Music data) {
}
@Override
public void delete(@NonNull Music data) {
}
@Override
public void delete(@NonNull String dataId) {
}
@Override
public void deleteAll() {
}
@VisibleForTesting
static void clearInstance() {
INSTANCE = null;
}
跟踪:
java.lang.NoSuchMethodError: No static method clearInstance()V in class
Lcom/stapeapp/stape/music/domain/datasource/MusicLocalDataSource; or its super classes (declaration of 'com.stapeapp.stape.music.domain.datasource.MusicLocalDataSource' appears in /data/app/com.stapeapp.stape.mock-2/base.apk) at com.stapeapp.stape.music.domain.datasource.MusicLocalDataSourceTest.cleanUp(MusicLocalDataSourceTest.java:56) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) 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 android.support.test.internal.runner.junit4.statement.RunAfters.evaluate(RunAfters.java:80) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) 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.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.junit.runners.Suite.runChild(Suite.java:128) at org.junit.runners.Suite.runChild(Suite.java:27) 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.junit.runners.ParentRunner.run(ParentRunner.java:363) at org.junit.runner.JUnitCore.run(JUnitCore.java:137) at org.junit.runner.JUnitCore.run(JUnitCore.java:115) at android.support.test.internal.runner.TestExecutor.execute(TestExecutor.java:58) at android.support.test.runner.AndroidJUnitRunner.onStart(AndroidJUnitRunner.java:375) at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1871)
有人知道发生了什么事和/或可以给我一些指示吗?
编辑:当我在其他测试中创建实体的新实例时,再次出现此错误,该实体在测试中是静态属性。
public class IEMusicDaoTest {
private static final Music MUSIC = new Music("1", "title", "artistic"); // error occurred here
private StapeDatabase mDatabase;
@Before
public void setUp() throws Exception {
Context context = InstrumentationRegistry.getContext();
mDatabase = Room.inMemoryDatabaseBuilder(context, StapeDatabase.class).build();
}
@After
public void tearDown() throws Exception {
mDatabase.close();
}
@Test
public void should_have_success_in_save_music() {
mDatabase.musicDao().save(MUSIC);
Music loaded = mDatabase.musicDao().findMusicById(MUSIC.getId());
assertMusic(loaded, MUSIC.getId(), MUSIC.getName(), MUSIC.getArtist());
}
private void assertMusic(Music loaded, String id, String name, String artist) {
Assert.assertThat(loaded, CoreMatchers.notNullValue());
Assert.assertThat(loaded.getId(), CoreMatchers.is(id));
Assert.assertThat(loaded.getName(), CoreMatchers.is(name));
Assert.assertThat(loaded.getArtist(), CoreMatchers.is(artist));
}
最佳答案
通常检查引入该类方法的版本。如果该方法是在新版本中引入的,编译器会接受,但如果在旧平台上运行,这将是运行时的错误!
关于java.lang.NoSuchMethodError : No static method clearInstance(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49780437/
我正在用来自JSON文件的一些数据填充Flutter中的列表。 但是,我的代码不断抛出异常"NoSuchMethodError (NoSuchMethodError: The method 'add'
通过eclipse运行Tomcat 7报错是: javax.servlet.ServletException: java.lang.NoSuchMethodError: org.eclipse.jdt
这是我的错误行: 这是我的代码: 最佳答案 final jobs= json.decode(response.body)['name_database_table']; 关于mobile - NoSu
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。为了帮助澄清这个问题以便可以重新打开它,visit the help center
我已经被这个错误困扰了几个小时。。我的pom.xml。应用程序未启动。所有的Spring框架依赖于相同的版本,但仍然得到相同的错误。。更新。MVN依赖的结果:树。看起来这里一切都很好。
我得到: NoSuchMethodError: com.foo.SomeService.doSmth()Z 我是否正确理解这个'Z'意味着doSmth()方法的返回类型是 boolean 值?如果为
我在 Speed 类中引用 PlayerUtil.getMovementSpeed(player);,在我的 PlayerUtil 类中,我将方法定义为: public static double g
我得到: NoSuchMethodError: com.foo.SomeService.doSmth()Z 我是否正确理解这个 'Z' 意味着 doSmth() 方法的返回类型是 boolean 值?
我在使用 Spark 和 Scala 时遇到了一个奇怪的错误。我有一段代码声明了一个变量: var offset = 0 这会导致以下异常: java.lang.NoSuchMethodError:
我已经成功实现了 reflectionEquals 方法,其中包含一个排除字段列表。 return EqualsBuilder.reflectionEquals(this, obj, new Str
我正在使用 Spring 框架和 Maven 开发 Java Enterprise 应用程序。我正在为此学习一门类(class),并且一直坚持集成 Hibernate JPA。当我运行项目时,它返回以
I/flutter ( 8282): The following NoSuchMethodError was thrown building Meme(dirty, state: _MemeState
运行以下代码时出现 NoSuchMethodError - 我想从 JSON url 打印出轨道标题 - 我错过了什么吗? import 'dart:async'; import 'dart:conv
我正在做 Searchview flutter 中的例子 https://github.com/MageshPandian20/Flutter-SearchView 但我想对 进行更改子项类有一个 最
尝试从Eclipse中的简单Java程序连接到Hive时出现以下错误。看起来好像连接,然后引发此错误。我可以通过beeline在本地连接到Hive Thrift服务器,而不会出现问题。 两个libth
当我向安全资源发出请求时,会发生NoSuchMethodError。 基于基于Spring Boot 1.4.4的Grails 3.2.5的项目 AppConfig: @EnableWebSecuri
这个问题已经有答案了: Differences between Exception and Error (11 个回答) 已关闭 7 年前。 我的印象是 Exception 非常适合捕获所有可能的异常
祝大家有美好的一天!我使用 google Vision API,当我在 IntelliJ Idea 中运行我的程序时,它工作得很好,但是当我编译 jar 文件时,它在处理照片时给出错误 java.la
我一直在为这个问题苦苦挣扎。我正在开发一个包含很多包的 netbeans java 项目,起初我更改了 gui,但是当我运行代码时,它没有反射(reflect)任何更改,即使我在保存、清理、清理和编译
我一直在寻找问题的解决方案,但没有得到足够的答案。 我正在开发 Bukkit插件的更新系统。因此,我必须自己编写这些类的代码。但我一直想从 debug(String) 调用一个方法(具体来说: ano
我是一名优秀的程序员,十分优秀!