with one click
test
Guidelines for frontend component and E2E testing in FinanzApp.
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 frontend component and E2E testing in FinanzApp.
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
Mandatory rule requiring a corresponding test file for every business logic file and UI component.
Guidelines for naming test folders and namespaces following the Unit.[Component] convention.
Catalog of all specialized skills used across the FinanzApp project (Frontend & Backend).
Guidelines for clean code, readability, and the "No Comments" policy.
Mandatory rule for EF Core migrations and database updates.
Mandatory rules for automatically updating README.md when creating files or tests.
| name | test |
| description | Guidelines for frontend component and E2E testing in FinanzApp. |
Quality assurance in the Backend involves checking business logic, data persistence, and API behavior using xUnit and Moq.
Services and Domain.EF Core In-Memory database to validate repository logic and business rules that involve data persistence without needing a real SQL Server.WebApplicationFactory to test the full API pipeline (Controllers + Services + DB) by making real HTTP calls to a test server.FluentAssertions if available, or standard Assert methods from xUnit.[Subject]_[Scenario]_[ExpectedResult].
GetById_UserDoesNotExist_ReturnsNotFound.