What problem does it solve? Maintaining a healthy .NET test suite requires detecting anti-patterns, finding untested code, and measuring coverage, which is tedious to do manually across large codebases. ## Core Features & Use Cases - Test Generation & Scaffolding: Write MSTest tests following strict TDD conventions and scaffold new test projects with correct configuration. - Quality Auditing: Detect anti-patterns, assertion weaknesses, and formal test smells such as Eager Test or Mystery Guest. - Coverage & Gap Analysis: Run pseudo-mutation analysis, CRAP score calculation, and untested-source detection to prioritize what to test next. - Use Case: Before closing a feature in a .NET solution, audit the suite for weak assertions, identify classes with no coverage, then generate the missing MSTest tests following the red-green cycle. ## Quick Start Audit the tests in tests/SERVICIOS.Tests for anti-patterns and list production classes that currently have no test coverage.