What problem does it solve? Writing unit tests that follow a project's established conventions is repetitive and error-prone. This Skill scaffolds xUnit test classes that match the ECommerceApp testing standards, so developers get consistent, correctly structured tests without memorizing every convention. ## Core Features & Use Cases - Three test templates: Generates Moq-based service tests, mock-free aggregate tests, and handler tests with repository verification. - Convention enforcement: Applies naming rules (MethodName_Scenario_ExpectedResult), CreateSut/CreateHandler factory methods, FluentAssertions, and CancellationToken usage automatically. - Correct file placement: Places tests under ECommerceApp.UnitTests for both new bounded-context modules and legacy services. - Use Case: After adding a new OrderPaymentConfirmedHandler in the Sales/Orders bounded context, generate a handler test class with mocked repository, Arrange/Act/Assert stubs, and verification of update calls. ## Quick Start Ask the assistant to create a unit test for a given service or handler name, optionally specifying the bounded context path such as Sales/Orders.