
org.robolectric.shadows.ShadowHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
An alternative Android testing framework.
The newest version!
package org.robolectric.shadows;
import android.os.Handler;
import android.os.Looper;
import org.robolectric.annotation.Implements;
import static org.robolectric.Shadows.shadowOf;
/**
* Robolectric places posted {@link Runnable}s into a queue instead of sending them to be handled on a
* separate thread. {@link Runnable}s that are scheduled to be executed immediately can be triggered by calling
* {@link #idleMainLooper()}.
*
* todo: add utility method to advance time and trigger execution of Runnables scheduled for a time in the future
*
* @deprecated There is no special shadow implementation for the {@link android.os.Handler} class. The special
* handling is all done by {@link ShadowLooper} and {@link ShadowMessageQueue}. This class has been retained
* for backward compatibility with the various static method implementations.
*/
// Note: If this shadow is ever completely removed it will still probably make sense to keep
// the associated tests - if necessary we can copy them into ShadowLooperTest or ShadowMessageQueueTest.
@Deprecated
// Even though it doesn't implement anything, some parts of the system will fail if we don't have the
// @Implements tag (ShadowWrangler).
@Implements(Handler.class)
public class ShadowHandler {
/**
* @deprecated use {@link ShadowLooper#idleMainLooper()} instead
*/
@Deprecated
public static void flush() {
idleMainLooper();
}
/**
* @deprecated
* @see org.robolectric.shadows.ShadowLooper#idleMainLooper()
*/
@Deprecated
public static void idleMainLooper() {
ShadowLooper.idleMainLooper();
}
/**
* @deprecated
* @see ShadowLooper#runUiThreadTasksIncludingDelayedTasks()
*/
@Deprecated
public static void runMainLooperToEndOfTasks() {
ShadowLooper.runUiThreadTasksIncludingDelayedTasks();
}
/**
* @deprecated
* @see ShadowLooper#runMainLooperOneTask() ()
*/
@Deprecated
public static void runMainLooperOneTask() {
shadowOf(Looper.myLooper()).runOneTask();
}
/**
* @deprecated
* @see ShadowLooper#runMainLooperToNextTask() ()
*/
@Deprecated
public static void runMainLooperToNextTask() {
shadowOf(Looper.myLooper()).runToNextTask();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy