Uses of Class
io.reactivex.rxjava3.observers.BaseTestConsumer
-
Packages that use BaseTestConsumer Package Description io.reactivex.rxjava3.observers Default wrappers and implementations for observer-based consumer classes and interfaces, including disposable and resource-tracking variants and theTestObserver
that allows unit testingObservable
-,Single
-,Maybe
- andCompletable
-based flows.io.reactivex.rxjava3.subscribers Default wrappers and implementations forSubscriber
-based consumer classes and interfaces, including disposable (DisposableSubscriber
) and resource-tracking (ResourceSubscriber
) variants and theTestSubscriber
that allows unit testingFlowable
-based flows. -
-
Uses of BaseTestConsumer in io.reactivex.rxjava3.observers
Classes in io.reactivex.rxjava3.observers with type parameters of type BaseTestConsumer Modifier and Type Class Description class
BaseTestConsumer<T,U extends BaseTestConsumer<T,U>>
Base class with shared infrastructure to supportTestSubscriber
andTestObserver
.Subclasses of BaseTestConsumer in io.reactivex.rxjava3.observers Modifier and Type Class Description class
TestObserver<T>
AnObserver
,MaybeObserver
,SingleObserver
andCompletableObserver
composite that can record events fromObservable
s,Maybe
s,Single
s andCompletable
s and allows making assertions about them. -
Uses of BaseTestConsumer in io.reactivex.rxjava3.subscribers
Subclasses of BaseTestConsumer in io.reactivex.rxjava3.subscribers Modifier and Type Class Description class
TestSubscriber<T>
ASubscriber
implementation that records events and allows making assertions about them.
-