java-springboot-testing
Installation
SKILL.md
When to Use
- Writing tests for Spring Boot applications
- Need help choosing the right test slice
- Setting up test infrastructure
- Working with MockMvc, TestRestTemplate, or RestTestClient
- Writing integration tests with Testcontainers
Instructions
Quick Decision Tree
Testing a controller endpoint?
Yes → @WebMvcTest with MockMvcTester
Testing repository queries?
Yes → @DataJpaTest with Testcontainers (real DB)