@@ -327,6 +327,7 @@ public interface PublisherVerificationRules {
327327 * <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than
328328 * {@link #required_validate_boundedDepthOfOnNextAndRequestRecursion()} plus 1.
329329 * <p>If this test fails, the following could be checked within the {@code Publisher} implementation:
330+ * <ul>
330331 * <li>the {@code TestEnvironment} has large enough timeout specified in case the {@code Publisher} has some time-delay behavior,</li>
331332 * <li>make sure the {@link #required_createPublisher1MustProduceAStreamOfExactly1Element()} and {@link #required_createPublisher3MustProduceAStreamOfExactly3Elements()} tests pass,</li>
332333 * <li>the implementation doesn't allow unbounded recursion when {@code request()} is called from within {@code onNext}, i.e., the lack of
@@ -352,6 +353,7 @@ public interface PublisherVerificationRules {
352353 * <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than 3.
353354 * <p>The post-cancellation request pattern is (1, 1, 1).
354355 * <p>If this test fails, the following could be checked within the {@code Publisher} implementation:
356+ * <ul>
355357 * <li>the {@code TestEnvironment} has large enough timeout specified in case the {@code Publisher} has some time-delay behavior,</li>
356358 * <li>make sure the {@link #required_createPublisher1MustProduceAStreamOfExactly1Element()} and {@link #required_createPublisher3MustProduceAStreamOfExactly3Elements()} tests pass,</li>
357359 * <li>the cancellation indicator flag is properly persisted (may require volatile) and checked as part of the signal emission process.</li>
@@ -364,6 +366,7 @@ public interface PublisherVerificationRules {
364366 * multiple times should result in no signals to be emitted and should result in an thrown exception.
365367 * <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than 1.
366368 * <p>If this test fails, the following could be checked within the {@code Publisher} implementation:
369+ * <ul>
367370 * <li>the {@code TestEnvironment} has large enough timeout specified in case the {@code Publisher} has some time-delay behavior,</li>
368371 * <li>make sure the {@link #required_createPublisher1MustProduceAStreamOfExactly1Element()} and {@link #required_createPublisher3MustProduceAStreamOfExactly3Elements()} tests pass,</li>
369372 * <li>the cancellation indicator flag is properly persisted (may require volatile) and checked as part of the signal emission process.</li>
0 commit comments