Comprehensive developer toolkit providing reusable skills for Java/Spring Boot, TypeScript/NestJS/React/Next.js, Python, PHP, AWS CloudFormation, AI/RAG, DevOps, and more.
90
90%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Risky
Do not use without reviewing
Quick reference to 15 JUnit testing skills for Spring Boot applications. See individual skill files for complete details.
| Skill | Purpose |
|---|---|
| unit-test-service-layer | Service layer unit testing with mocks |
| unit-test-controller-layer | Controller testing with MockMvc |
| unit-test-parameterized | Parameterized tests with @ParameterizedTest |
| unit-test-exception-handler | Exception handling and custom exceptions |
| unit-test-bean-validation | Jakarta Validation testing |
| unit-test-security-authorization | Spring Security with @WithMockUser |
| unit-test-application-events | Application event publishing and listeners |
| unit-test-scheduled-async | Testing @Async, @Scheduled tasks |
| unit-test-json-serialization | JSON serialization with @JsonTest |
| unit-test-config-properties | @ConfigurationProperties binding |
| unit-test-mapper-converter | Entity to DTO mapping tests |
| unit-test-caching | @Cacheable and cache eviction tests |
| unit-test-boundary-conditions | Edge cases, limits, null values |
| unit-test-utility-methods | Static methods, helpers, utilities |
| unit-test-wiremock-rest-api | REST API mocking with WireMock |
File: skills/unit-test-controller-layer/SKILL.md
MockMvc testing: request/response handling, status codes.
When to use:
Pattern:
@WebMvcTest(UserController.class)
class UserControllerTest {
@Autowired MockMvc mockMvc;
@Test
void shouldReturnUser() throws Exception {
mockMvc.perform(get("/users/1"))
.andExpect(status().isOk())
.andExpect(jsonPath("$.id").value(1));
}
}File: skills/unit-test-service-layer/SKILL.md
Service testing: mocking, assertions, test organization.
When to use:
File: skills/unit-test-exception-handler/SKILL.md
Testing custom exceptions and error scenarios.
When to use:
File: skills/unit-test-mapper-converter/SKILL.md
Entity to DTO mapping and converter testing.
When to use:
File: skills/unit-test-security-authorization/SKILL.md
Spring Security testing: @WithMockUser, roles, permissions.
When to use:
Pattern:
@Test
@WithMockUser(roles = "ADMIN")
void adminCanDelete() throws Exception {
mockMvc.perform(delete("/users/1"))
.andExpect(status().isNoContent());
}File: skills/unit-test-caching/SKILL.md
Testing @Cacheable and cache eviction.
When to use:
File: skills/unit-test-application-events/SKILL.md
Testing @EventListener and event publishing.
When to use:
File: skills/unit-test-config-properties/SKILL.md
Testing @ConfigurationProperties binding.
When to use:
File: skills/unit-test-scheduled-async/SKILL.md
Testing @Async and @Scheduled tasks.
When to use:
File: skills/unit-test-json-serialization/SKILL.md
JSON serialization/deserialization with @JsonTest.
When to use:
File: skills/unit-test-parameterized/SKILL.md
JUnit 5 @ParameterizedTest for multiple scenarios.
When to use:
Pattern:
@ParameterizedTest
@ValueSource(ints = {1, 2, 3, 4, 5})
void shouldProcess(int value) {
assertTrue(service.isValid(value));
}File: skills/unit-test-utility-methods/SKILL.md
Static methods, helpers, utility functions.
When to use:
File: skills/unit-test-boundary-conditions/SKILL.md
Edge cases, limits, null values, boundary testing.
When to use:
File: skills/unit-test-wiremock-rest-api/SKILL.md
REST API mocking with WireMock for integration tests.
When to use:
1. unit-test-controller-layer → Test request/response
2. unit-test-service-layer → Test business logic
3. unit-test-exception-handler → Test error cases
4. unit-test-parameterized → Multiple scenarios1. unit-test-security-authorization → Mock user/roles
2. unit-test-controller-layer → Test permission checks
3. unit-test-exception-handler → Test authorization failures1. unit-test-config-properties → Property binding
2. unit-test-service-layer → Service uses config
3. unit-test-caching → Cache config1. unit-test-scheduled-async → Async method execution
2. unit-test-application-events → Event publishing
3. unit-test-parameterized → Multiple timing scenarios@ParameterizedTest for multiple inputsNote: For complete patterns and examples, see individual skill files in skills/
docs
plugins
developer-kit-ai
developer-kit-aws
agents
docs
skills
aws
aws-cli-beast
aws-cost-optimization
aws-drawio-architecture-diagrams
aws-sam-bootstrap
aws-cloudformation
aws-cloudformation-auto-scaling
aws-cloudformation-bedrock
aws-cloudformation-cloudfront
aws-cloudformation-cloudwatch
aws-cloudformation-dynamodb
aws-cloudformation-ec2
aws-cloudformation-ecs
aws-cloudformation-elasticache
references
aws-cloudformation-iam
references
aws-cloudformation-lambda
aws-cloudformation-rds
aws-cloudformation-s3
aws-cloudformation-security
aws-cloudformation-task-ecs-deploy-gh
aws-cloudformation-vpc
references
developer-kit-core
agents
commands
skills
developer-kit-devops
developer-kit-java
agents
commands
docs
skills
aws-lambda-java-integration
aws-rds-spring-boot-integration
aws-sdk-java-v2-bedrock
aws-sdk-java-v2-core
aws-sdk-java-v2-dynamodb
aws-sdk-java-v2-kms
aws-sdk-java-v2-lambda
aws-sdk-java-v2-messaging
aws-sdk-java-v2-rds
aws-sdk-java-v2-s3
aws-sdk-java-v2-secrets-manager
clean-architecture
graalvm-native-image
langchain4j-ai-services-patterns
references
langchain4j-mcp-server-patterns
references
langchain4j-rag-implementation-patterns
references
langchain4j-spring-boot-integration
langchain4j-testing-strategies
langchain4j-tool-function-calling-patterns
langchain4j-vector-stores-configuration
references
qdrant
references
spring-ai-mcp-server-patterns
spring-boot-actuator
spring-boot-cache
spring-boot-crud-patterns
spring-boot-dependency-injection
spring-boot-event-driven-patterns
spring-boot-openapi-documentation
spring-boot-project-creator
spring-boot-resilience4j
spring-boot-rest-api-standards
spring-boot-saga-pattern
spring-boot-security-jwt
assets
references
scripts
spring-boot-test-patterns
spring-data-jpa
references
spring-data-neo4j
references
unit-test-application-events
unit-test-bean-validation
unit-test-boundary-conditions
unit-test-caching
unit-test-config-properties
references
unit-test-controller-layer
unit-test-exception-handler
references
unit-test-json-serialization
unit-test-mapper-converter
references
unit-test-parameterized
unit-test-scheduled-async
references
unit-test-service-layer
references
unit-test-utility-methods
unit-test-wiremock-rest-api
references
developer-kit-php
developer-kit-project-management
developer-kit-python
developer-kit-specs
commands
docs
hooks
test-templates
tests
skills
developer-kit-tools
developer-kit-typescript
agents
docs
hooks
rules
skills
aws-cdk
aws-lambda-typescript-integration
better-auth
clean-architecture
drizzle-orm-patterns
dynamodb-toolbox-patterns
references
nestjs
nestjs-best-practices
nestjs-code-review
nestjs-drizzle-crud-generator
nextjs-app-router
nextjs-authentication
nextjs-code-review
nextjs-data-fetching
nextjs-deployment
nextjs-performance
nx-monorepo
react-code-review
react-patterns
shadcn-ui
tailwind-css-patterns
tailwind-design-system
references
turborepo-monorepo
typescript-docs
typescript-security-review
zod-validation-utilities
references
github-spec-kit