What problem does it solve?
It solves the problem of lacking real end-to-end verification in a Spring Boot 4 project, where you want confidence that the embedded server starts and real HTTP endpoints (including actuator) behave correctly.
Core Features & Use Cases
- Creates an e2eTest source set that runs against the application like a real deployment by using @SpringBootTest(RANDOM_PORT).
- Registers an e2eTest Gradle task and wires it into the verification lifecycle (tasks.check) with JaCoCo ordering.
- Provides a ready ApplicationTests class that includes contextLoads() style startup confidence plus actuator health assertions over real HTTP.
- Use case: after adding a new primary REST endpoint, you add one happy-path e2e test in ApplicationTests to ensure the endpoint is reachable and health is UP.
Quick Start
Ask to add the end-to-end test layer to your Spring Boot 4 service so it gets the e2eTest source set, e2eTest task, and ApplicationTests with actuator health verification.