java-regression-test-generator

java-regression-test-generator is a skill for Claude Code, Codex from ArabelaTso/Skills-4-SE. It costs 111 tokens per session (3,499 once invoked), scanned A, original, Apache-2.0.

A Java testing tool that compares an older and newer version of code and creates regression tests. Regression tests check that behavior that already worked still works after changes.

In plain words
What is it for?
Use it after refactoring or changing Java code to test new and modified behavior and suggest fixes for invalid existing tests.
Why use it?
It reduces the manual work of finding changed code paths and updating tests that no longer match the code.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/arabelatso/skills-4-se/java-regression-test-generator
Any agent
npx skills add ArabelaTso/Skills-4-SE --skill java-regression-test-generator
Clone the repo
git clone --depth 1 https://github.com/ArabelaTso/Skills-4-SE

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for java-regression-test-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/arabelatso/skills-4-se/java-regression-test-generator.svg)](https://agentmods.dev/skills/arabelatso/skills-4-se/java-regression-test-generator)
Your own site
<a href="https://agentmods.dev/skills/arabelatso/skills-4-se/java-regression-test-generator"><img src="https://agentmods.dev/badge/skills/arabelatso/skills-4-se/java-regression-test-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,499 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00111 $0.03499
Opus 5 $0.00056 $0.01750
Sonnet 5 $0.00022 $0.00700
Haiku 4.5 $0.00011 $0.00350

Measured 2d ago against content hash 76e02d117374, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

java-regression-test-generator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/java-regression-test-generator/SKILL.md · 554 lines

How it starts

The opening of the file, as written. The whole thing — 554 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Java Regression Test Generator

Automatically generate regression tests for Java code based on version changes.

Overview

This skill analyzes changes between old and new versions of Java code and generates regression tests that ensure previously tested behavior still works while covering new or modified functionality. It preserves correctness guarantees from existing tests and suggests updates when old tests become invalid.

How to Use

Provide:

  1. Old version: The previous version of Java code
  2. New version: The updated version of Java code
  3. Existing tests: Test classes or methods for the old version
  4. Framework (optional): JUnit 5 (default) or TestNG

The skill will:

  • Analyze changes between versions
  • Identify modified, added, or removed functionality
  • Generate regression tests for the new code
  • Suggest updates for invalid existing tests
  • Produce executable test code ready for integration

Test Generation Workflow

Step 1: Analyze Code Changes

Compare old and new versions to identify changes:

Method-level changes:

  • Signature changes (parameters, return type)
  • Logic modifications (algorithm, error handling)
  • New methods added
  • Methods removed

Class-level changes:

  • Field additions or removals
  • Constructor changes
  • Inheritance modifications
  • Access modifier changes

Dependency changes:

  • New dependencies injected
  • Dependency injection patterns added
  • External API changes

Step 2: Classify Change Types

Categorize each change to determine test generation strategy:

Type 1: Signature Changes

  • Parameter added/removed/reordered
  • Return type changed
  • Exception declarations modified

Type 2: Behavioral Changes

  • Algorithm optimized (same behavior)
  • Error handling added
  • Validation logic added

Type 3: Structural Changes

  • New methods/classes added
  • Methods/classes removed
  • Refactoring (extract method, rename)

Type 4: Dependency Changes

  • Constructor injection added
  • Dependencies replaced
  • Mock requirements changed

Read the full file on GitHub · 554 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 554 lines · 111 tokens per session scan A 76e02d117374

Subscribe to this mod's changes

java-regression-test-generator is a skill published in the GitHub repository ArabelaTso/Skills-4-SE (248 stars, last pushed 15d ago), licensed Apache-2.0. It adds 111 tokens to every session and 3,499 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

111-java-maven-dependencies

Use when you need to add or evaluate Maven dependencies that improve code quality or domain modeling — including nullness annotations (JSpecify), static analysis (Error Prone + NullAway), functional programming (VAVR), architecture testing (ArchUnit), or money and currency support (JavaMoney) — and want a…

jabrena/plinth · 133 tokens

130-java-testing-strategies

Use when you need to apply testing strategies for Java code — RIGHT-BICEP to guide test creation, A-TRIP for test quality characteristics, or CORRECT for verifying boundary conditions. This should trigger for requests such as Review Java code for testing strategies; Apply RIGHT-BICEP testing strategies in Java code…

jabrena/plinth · 96 tokens

131-java-testing-unit-testing

Use when you need to review, improve, or write Java unit tests — including migrating from JUnit 4 to JUnit 5, adopting AssertJ for fluent assertions, structuring tests with Given-When-Then, ensuring test independence, applying parameterized tests, mocking dependencies with Mockito, verifying boundary conditions…

jabrena/plinth · 160 tokens

421-frameworks-quarkus-testing-unit-tests

Use when you need to write fast unit tests for Quarkus applications — including pure tests with @ExtendWith(MockitoExtension.class), @QuarkusTest with @InjectMock for full CDI mock replacement, @InjectSpy for partial CDI bean mocking, REST Assured for resource-focused tests, @ParameterizedTest with @CsvSource /…

jabrena/plinth · 205 tokens

java-unit-test-generator

Generates JUnit unit tests for Java classes with loop prevention and incremental generation. Triggers on: "generate unit tests", "create JUnit tests", "test Java class", "add test coverage".

timwukp/agent-skills-best-practice · 46 tokens

java-unit-test

为 Spring Boot 项目生成高质量 Java 单元测试代码。当用户要求"写单元测试"、"生成测试用例"、"帮我写 test"、"补充测试覆盖"、"写 JUnit 测试"、"写 Mockito 测试"、"测试这个 Service / Controller / Mapper"时,必须使用此 skill。即使用户只是说"帮我测一下这个方法"或贴出 Java 代码并问"怎么测",也应触发此 skill。.

hashgraph-online/awesome-codex-plugins · 113 tokens