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.
- Host: GitHub
- URL: https://github.com/attacktive/reactor-tester
- Owner: Attacktive
- License: mit
- Created: 2025-06-24T08:17:22.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-08-22T01:15:28.000Z (10 months ago)
- Last Synced: 2025-09-01T01:50:08.624Z (10 months ago)
- Topics: kotlin, reactor, spring, test
- Language: Kotlin
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```