
org.robolectric.shadows.ShadowWebSyncManager 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 org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(className = "android.webkit.WebSyncManager")
public class ShadowWebSyncManager {
protected boolean synced = false;
@Implementation
public void sync() {
synced = true;
}
public boolean synced() {
return synced;
}
public void reset() {
synced = false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy