Created
February 2, 2014 17:04
-
-
Save avh4/8771411 to your computer and use it in GitHub Desktop.
Helper for testing the Otto EventBus
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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