RxJava: Completable to Single
@Test | |
public void testCompletableToSingle() { | |
Completable.complete() | |
.toSingle(() -> Single.just("result")) | |
.test() | |
.assertValueCount(1) | |
.assertNoErrors(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment