We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65c5498 commit 6029c03Copy full SHA for 6029c03
rsocket-core/src/test/java/io/rsocket/core/DefaultRSocketClientTests.java
@@ -491,6 +491,10 @@ public Mono<Void> onClose() {
491
492
onCloseDelayer.tryEmitEmpty();
493
494
+ onCloseSubscriber.assertNotTerminated();
495
+
496
+ rule.otherClosedSink.tryEmitEmpty();
497
498
onCloseSubscriber.assertTerminated().assertComplete();
499
500
Assertions.assertThat(rule.socket.isDisposed()).isTrue();
@@ -512,6 +516,10 @@ public void shouldResolveOnStartSource() {
512
516
513
517
rule.client.onClose().subscribe(assertSubscriber1);
514
518
519
+ assertSubscriber1.assertNotTerminated();
520
521
522
515
523
assertSubscriber1.assertTerminated().assertComplete();
524
525
0 commit comments