OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add giuseppe-trisciuoglio/developer-kit --skill unit-test-utility-methods
Provides patterns for testing utility classes, static methods, and helper functions. Validates pure functions, null handling, edge cases, and boundary conditions. Generates AssertJ assertions and @ParameterizedTest for string utils, math utils, validators, and collection helpers. Use when testing utils, test helpers, helper functions, static methods, or verifying utility code correctness.
npx skills add giuseppe-trisciuoglio/developer-kit --skill unit-test-utility-methods
This skill generates tests for utility classes with static helper methods and pure functions. It provides patterns for testing null handling, edge cases, boundary conditions, and common utilities like string manipulation, calculations, data validation, and collections. Pure functions require no mocking.
Use this skill when:
StringUtilsTest)shouldCapitalizeFirstLetter instead of test1@ParameterizedTest: For multiple similar inputs (see references/parameterized-tests.md)shouldReturnNullWhenInputIsNull@ParameterizedTest for multiple similar inputs (see references/parameterized-tests.md)isCloseTo(delta)references/edge-cases.md for boundary testing patterns