Agent skill

Spring Boot Testing

Standards for unit, integration, and slice testing in Spring Boot 3

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/testing-hoangnguyen0403-agent-skills-standar-11

Metadata

Additional technical details for this skill

labels
spring-boot testing junit testcontainers
triggers
{
    "files": [
        "**/*Test.java"
    ],
    "keywords": [
        "webmvctest",
        "datajpatest",
        "testcontainers",
        "assertj"
    ]
}

SKILL.md

Spring Boot Testing Standards

Priority: P0

Implementation Guidelines

TDD Workflow

  1. Red: Write a 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.

Best Practices

  • Real Infrastructure: Use Testcontainers for DB/Queues. See Integration Template.
  • Slice Testing: See Slice Test Templates for @WebMvcTest / @DataJpaTest.

Best Practices

  • 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.

Anti-Patterns

  • Context Reloading: **No Dirty Contexts**: Avoid @MockBean in base classes.
  • External Calls: **No network I/O**: Use WireMock.
  • System Out: **No System.out**: Use assertions.

References

  • Implementation Examples

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results