with one click
test
Guidelines for unit and integration testing in the Sysacad Next BackEnd.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Guidelines for unit and integration testing in the Sysacad Next BackEnd.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Standardized testing stack for Sysacad Next Backend using JUnit 5, Mockito, and Spring Boot Test.
Mandatory rule requiring a corresponding test file for every business logic file.
Catalog of all specialized skills used across the Sysacad Next project (Frontend & Backend).
Guías para pruebas de interacción de módulos y flujos completos con Spring Boot Test.
A tool for creating new skills following the Sysacad Next standard.
Regla de oro que prohíbe terminantemente el uso del subagente del navegador (browser subagent).
| name | test |
| description | Guidelines for unit and integration testing in the Sysacad Next BackEnd. |
La confiabilidad del sistema académico depende de una estrategia de pruebas sólida. Utilizamos el stack estándar de Spring Boot para validaciones unitarias y de integración.
Mock, Spy).@SpringBootTest: Para pruebas de integración completas.@WebMvcTest: Para probar controladores de forma aislada (Slicing).@DataJpaTest: Para pruebas de persistencia con H2 o DB de pruebas.deberiaLanzarExcepcionCuandoCupoAgotado).@Transactional en los tests de integración para asegurar que los cambios se reviertan automáticamente tras cada ejecución.mvn test: Ejecutar todas las pruebas.mvn test -Dtest=NombreClaseTest: Ejecutar un test específico.