Java test
Skill ducpm2303/claude-java-plugins/plugins/java-quality/skills/java-test
Java developer toolkit for Claude Code — skills, agents, hooks, and coding standards for Java 8+ projects
npx -y skills add ducpm2303/claude-java-plugins --skill java-testAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 17 stars17 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generates JUnit 5 and Mockito unit tests or Testcontainers integration tests, auto-detecting project setup. Use when user asks to "write tests", "generate tests", "add unit tests", "create test class", "test this service", or "write integration tests".
SKILL.md
5.1 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
/java-test — Java Test Generator
You are a Java test engineer. Generate complete, runnable tests for the code provided.
Step 1 — Auto-detect project context
Before asking any questions, check the project:
- Java version — read
pom.xml(<java.version>or<maven.compiler.source>) orbuild.gradle(sourceCompatibility) - Spring Boot version —
<parent>in pom.xml orid 'org.springframework.boot'in build.gradle - Test frameworks on classpath — scan
pom.xml/build.gradlefor:mockito-coreormockito-junit-jupiter→ Mockito availableassertj-core→ AssertJ availabletestcontainers→ Testcontainers availablespring-boot-starter-test→ includes JUnit 5 + Mockito + AssertJ
- Build tool — presence of
pom.xml(Maven) orbuild.gradle(Gradle)
Report what was detected, then proceed. Only ask the user for information that genuinely cannot be detected.
If nothing can be detected (no build file found), ask one question:
"I couldn't find a build file. What Java version and test framework are you using? (e.g., Java 17, Spring Boot 3.2, Mockito)"
Step 2 — Identify what to test
If the user provided code, analyse it. Otherwise ask:
"What class or behaviour should I generate tests for?"
Identify:
- Class type: Service, Repository, Controller, Utility
- All public methods with their inputs, outputs, and declared exceptions
- External dependencies to mock
Step 3 — Generate tests
Generate based on detected context. Offer unit tests, integration tests, or both based on the class type:
- Service class → unit test with Mockito (always) + offer integration test
- Repository →
@DataJpaTest+ Testcontainers integration test - Controller →
@WebMvcTestwith MockMvc - Utility / static class → plain JUnit 5, no mocks needed
Unit test template
@ExtendWith(MockitoExtension.class)
class {ClassName}Test {
@Mock
private {Dependency} dependency;
@InjectMocks
private {ClassName} sut; // system under test
@Test
void methodName_existingId_returnsResult() {
// Arrange
var input = ...;
when(dependency.method(input)).thenReturn(value);
// Act
var result = sut.method(input);
// Assert
assertThat(result).isEqualTo(expected);
}
@Test
void methodName_missingId_throwsException() {
when(dependency.method(any())).thenReturn(Optional.empty());
assertThatThrownBy(() -> sut.method(id))
.isInstanceOf(EntityNotFoundException.class);
}
}
Use var for Java 10+. Use records for test data holders on Java 16+.
Repository integration test template (Spring Boot 3.1+)
@DataJpaTest
@Testcontainers
class {Entity}RepositoryTest {
@Container
@ServiceConnection
static PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:16-alpine");
@Autowired
private {Entity}Repository repository;
@Test
void save_validEntity_persistsToDatabase() {
var entity = new {Entity}(...);
var saved = repository.save(entity);
assertThat(saved.getId()).isNotNull();
}
}
For Spring Boot 2.x replace @ServiceConnection with @DynamicPropertySource:
@DynamicPropertySource
static void configureProperties(DynamicPropertyRegistry registry) {
registry.add("spring.datasource.url", postgres::getJdbcUrl);
registry.add("spring.datasource.username", postgres::getUsername);
registry.add("spring.datasource.password", postgres::getPassword);
}
Controller test template
@WebMvcTest({Controller}.class)
class {Controller}Test {
@Autowired
private MockMvc mockMvc;
@MockBean
private {Service} service;
@Test
void get_existingId_returns200() throws Exception {
when(service.findById(1L)).thenReturn(response);
mockMvc.perform(get("/api/v1/resource/1"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.id").value(1));
}
@Test
void create_invalidBody_returns400() throws Exception {
mockMvc.perform(post("/api/v1/resource")
.contentType(MediaType.APPLICATION_JSON)
.content("{}"))
.andExpect(status().isBadRequest());
}
}
Step 4 — Coverage guidance
After generating tests, state:
- Which paths are covered (happy path, error paths, edge cases)
- What is NOT covered and why (e.g., private methods, infrastructure code)
- How to measure real coverage:
mvn test jacoco:reportor./gradlew test jacocoTestReport
Step 5 — Next Steps
- Run tests:
mvn test -qor./gradlew test - If tests fail → use
/java-fixwith the failure output - For coverage strategy → use the
java-test-engineeragent - For mutation testing quality → run
mvn org.pitest:pitest-maven:mutationCoverage
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most test skills give in ~1.1k tokens
Counted across 964 of the 1,571 authors here whose files we hold, read 2026-08-07
- Close the browser when donein 55 of 964, across 12 files
- Wait for network idle statein 51 of 964, across 6 files
- Launch Chromium in headless modein 49 of 964, across 6 files
- Use descriptive selectors for elementsin 49 of 964, across 6 files
- Run provided scripts with help flag firstin 49 of 964, across 6 files
- Add appropriate explicit waitsin 48 of 964, across 5 files
- Use bundled scripts as black boxesin 46 of 964, across 3 files
- Do not read script source codein 46 of 964, across 3 files
- Use sync playwright for scriptsin 46 of 964, across 3 files
- Inspect dom before executing actionsin 46 of 964, across 3 files
- Run the full test suitein 37 of 964
- Write the failing test firstin 29 of 964, across 23 files
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.