How do you structure your test projects in .NET solutions?
Typically, test projects mirror the structure of the production projects, organized by feature
or layer. For example, you might have MyApp.Core.Tests, MyApp.Web.Tests, and
MyApp.Data.Tests. Tests are grouped by functionality to keep code maintainable and
discoverable.