> .assertEmpty() > Assert that the TestObser...
# rx
a
.assertEmpty()
Assert that the TestObserver/TestSubscriber has received a Disposable but no other events.
You probably want:
test().assertNoValues().assertComplete()
to test for
Maybe.empty
, since
Maybe.just(Unit).test().assertComplete()
would still pass.