Registry / testing / reactor-test

reactor-test

JSON →
library3.8.5javamavenunverified

Reactor Test provides utilities for testing reactive streams with Project Reactor.

<dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <version>3.8.5</version> </dependency>
INSTALL
IMPORT
SIG · REACTOR-TEST
R
reactor-test
testingjavav3.8.5
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

StepVerifier
✓ reactor.test.StepVerifier

Verifies a Flux emits expected elements using StepVerifier.

import reactor.core.publisher.Flux; import reactor.test.StepVerifier; public class Main { public static void main(String[] args) { Flux<String> flux = Flux.just("a", "b", "c"); StepVerifier.create(flux) .expectNext("a", "b", "c") .verifyComplete(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.8.5latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
12
Resources
reactor-test — mvn dependency:get reactor-test · libregistry