J
J
Java Testing Notes
Ask or search…
K
Comment on page

How to test ViewModel and LiveData

Test your async code build on top of androidx arch.
As tests are synchronous in nature. To test async code, we need to let compiler know we need to call all async code synchronously.
We can set a custom delegate to execute all of our async code as soon as it is called. hence making it syncronous.
// Some code
@BeforeClass
public static void beforeClass() throws Exception {
TaskExecutor taskExecutor = new TaskExecutor() {
@Override
public void executeOnDiskIO(@NonNull Runnable runnable) {
runnable.run();
}
@Override
public void postToMainThread(@NonNull Runnable runnable) {
runnable.run();
}
@Override
public boolean isMainThread() {
return true;
}
};
ArchTaskExecutor.getInstance().setDelegate(taskExecutor);
}
@AfterClass
public static void afterClass() throws Exception {
ArchTaskExecutor.getInstance().setDelegate(null);
}
Last modified 4mo ago