An open API service indexing awesome lists of open source software.

https://github.com/attacktive/reactor-tester

A Kotlin project for testing and exploring Project Reactor's reactive programming concepts.
https://github.com/attacktive/reactor-tester

kotlin reactor spring test

Last synced: about 1 month ago
JSON representation

A Kotlin project for testing and exploring Project Reactor's reactive programming concepts.

Awesome Lists containing this project

README

          

# Reactor Tester

A Kotlin project for testing and exploring Project Reactor's reactive programming concepts, focusing on `Mono` and `Flux` operators and their behavior.

## Getting Started

### Run Tests

```bash
# Run all tests
./gradlew test

# Run specific test class
./gradlew test --tests MonoTester
./gradlew test --tests FluxTester
./gradlew test --tests MonoFromFlux
```