Write unit, integration, and slice tests for Spring Boot 3 applications. Use when writing unit tests, integration tests, or slice tests for Spring Boot 3 applications.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill spring-boot-testing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Spring Boot Testing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-spring-boot-testing)More formats (shields.io, HTML) on the badges page.
---
name: spring-boot-testing
description: Write unit, integration, and slice tests for Spring Boot 3 applications. Use when writing unit tests, integration tests, or slice tests for Spring Boot 3 applications.
metadata:
triggers:
files:
- '**/*Test.java'
keywords:
- webmvctest
- datajpatest
- testcontainers
- assertj
---
# Spring Boot Testing Standards
## **Priority: P0 (CRITICAL)**
## Follow TDD Workflow
1. **Red**: Write failing test (e.g., `returns 404`).
2. **Green**: Implement minimal code to pass.
3. **Refactor**: Clean up while keeping tests green.
4. **Coverage**: Verify with JaCoCo.
## Write Slice and Integration Tests
- **Real Infrastructure**: Use **Testcontainers** for DB/Queues. Avoid H2/Embedded.
- **Assertions**: Use **AssertJ** (`assertThat`) over JUnit assertions.
- **Isolation**: Use `@MockBean` for downstream dependencies in Slice Tests.
See [implementation examples](references/implementation.md) for WebMvcTest slice tests and Testcontainers integration tests.
## Anti-Patterns
- **No Dirty Contexts**: Avoid @MockBean in base classes; it reloads context per test.
- **No network I/O in tests**: Mock external calls with WireMock.
- **No System.out in tests**: Use AssertJ assertions instead.
## References
- [Implementation Examples](references/implementation.md)Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!