| Constructor and Description | 
|---|
| TestObserver() | 
| TestObserver(Observer<T> delegate) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | assertReceivedOnNext(java.util.List<T> items) | 
| void | assertTerminalEvent()Assert that a single terminal event occurred, either onCompleted or onError. | 
| java.util.List<java.lang.Object> | getEvents() | 
| java.util.List<Notification<T>> | getOnCompletedEvents() | 
| java.util.List<java.lang.Throwable> | getOnErrorEvents() | 
| java.util.List<T> | getOnNextEvents() | 
| void | onCompleted()Notifies the Observer that the  Observablehas finished sending push-based notifications. | 
| void | onError(java.lang.Throwable e)Notifies the Observer that the  Observablehas experienced an error condition. | 
| void | onNext(T t)Provides the Observer with new data. | 
public void onCompleted()
ObserverObservable has finished sending push-based notifications.
 
 The Observable will not call this closure if it calls onError.
onCompleted in interface Observer<T>public java.util.List<Notification<T>> getOnCompletedEvents()
public void onError(java.lang.Throwable e)
ObserverObservable has experienced an error condition.
 
 If the Observable calls this closure, it will not thereafter call onNext or
 onCompleted.
public java.util.List<java.lang.Throwable> getOnErrorEvents()
public void onNext(T t)
Observer
 The Observable calls this closure 1 or more times, unless it calls onError in which
 case this closure may never be called.
 
 The Observable will not call this closure again after it calls either onCompleted or
 onError.
public java.util.List<T> getOnNextEvents()
public java.util.List<java.lang.Object> getEvents()
public void assertReceivedOnNext(java.util.List<T> items)
public void assertTerminalEvent()