Skip to content

Instantly share code, notes, and snippets.

@avh4
Created February 2, 2014 17:04
Show Gist options
  • Save avh4/8771411 to your computer and use it in GitHub Desktop.
Save avh4/8771411 to your computer and use it in GitHub Desktop.
Helper for testing the Otto EventBus
package net.avh4.test.otto;
import com.squareup.otto.ThreadEnforcer;
import java.util.ArrayList;
import static org.hamcrest.Matchers.hasItem;
import static org.junit.Assert.assertThat;
public class TestBus extends com.squareup.otto.Bus {
private final ArrayList<Object> events = new ArrayList<>();
public TestBus() {
super(ThreadEnforcer.ANY);
}
@Override
public void post(Object event) {
events.add(event);
super.post(event);
}
public void verify(Object event) {
assertThat(events, hasItem(event));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment