dotnet-testing
Installation
SKILL.md
Testing Standards for .NET
Unit Testing Requirements
- Mandatory: Unit tests are required for all business logic, commands, and handlers.
- Organization Standard: Follow the AAA (Arrange-Act-Assert) principle.
- Separation of Concerns: Create builder classes to generate all variables, objects, and data needed for unit tests. This keeps tests clean and maintainable.
- Coverage: Minimum expected code coverage is 80%.