Skip to content

Instantly share code, notes, and snippets.

View ishaan-khan's full-sized avatar

Ishaan Pathan ishaan-khan

View GitHub Profile
private static LifecycleOwner mockLifecycleOwner() {
LifecycleOwner owner = mock(LifecycleOwner.class);
LifecycleRegistry lifecycle = new LifecycleRegistry(owner);
lifecycle.handleLifecycleEvent(Lifecycle.Event.ON_RESUME);
when(owner.getLifecycle()).thenReturn(lifecycle);
return owner;
}