@@ -30,9 +30,9 @@ public interface PublisherVerificationRules {
30
30
void required_validate_boundedDepthOfOnNextAndRequestRecursion () throws Exception ;
31
31
/**
32
32
* Asks for a {@code Publisher} that should emit exactly one item and complete (both within a
33
- * timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()}).
33
+ * timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()})
34
+ * in response to a request(1).
34
35
* <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} returns zero.
35
- * <p>This test mostly ensures that the {@code Publisher} implementation is actually operational.
36
36
* If this test fails (likely with a timeout error), the following could be checked within the {@code Publisher} implementation:
37
37
* <ul>
38
38
* <li>the {@code Publisher.subscribe(Subscriber)} method has actual implementation,</li>
@@ -52,8 +52,8 @@ public interface PublisherVerificationRules {
52
52
* Asks for a {@code Publisher} that should emit exactly three items and complete (all within a
53
53
* timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()}).
54
54
* <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than 3.
55
- * <p>This test mostly ensures that the {@code Publisher} implementation is actually operational .
56
- * If this test fails (likely with a timeout error), the following could be checked within the {@code Publisher} implementation:
55
+ * <p>The tests requests one-by-one and verifies each single response item arrives in time .
56
+ * <p> If this test fails (likely with a timeout error), the following could be checked within the {@code Publisher} implementation:
57
57
* <ul>
58
58
* <li>the {@code Publisher.subscribe(Subscriber)} method has actual implementation,</li>
59
59
* <li>in the {@code Publisher.subscribe(Subscriber)} method, if there is an upstream {@code Publisher},
@@ -189,7 +189,7 @@ public interface PublisherVerificationRules {
189
189
/**
190
190
* Asks for an empty {@code Publisher} and calls and verifies if {@code onSubscribe} was called before any calls
191
191
* to the other {@code onXXX} methods.
192
- * <p>Note that this test doesn't request anything yet an {@code onNext} is not considered as a failure.
192
+ * <p>Note that this test doesn't request anything, however, an {@code onNext} is not considered as a failure.
193
193
* <p>If this test fails, the following could be checked within the {@code Publisher} implementation:
194
194
* <ul>
195
195
* <li>the {@code TestEnvironment} has large enough timeout specified in case the {@code Publisher} has some time-delay behavior,</li>
0 commit comments