rx.marble.SetupTestSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marbletest4j Show documentation
Show all versions of marbletest4j Show documentation
Java port of RxJS marble tests
package rx.marble;
import java.util.Map;
public abstract class SetupTestSupport implements ISetupTest {
public void toBe(String marble,
Map values) {
toBe(marble, values, null);
}
public void toBe(String marble) {
toBe(marble, null);
}
}