rules/csharp/testing.md
This file extends common/testing.md with C#-specific content.
src/ structure under tests/public sealed class OrderServiceTests
{
[Fact]
public async Task FindByIdAsync_ReturnsOrder_WhenOrderExists()
{
// Arrange
// Act
// Assert
}
}
WebApplicationFactory<TEntryPoint> for API integration coveragedotnet test in CI with coverage collection enabled where available