How do you write integration tests in .NET?
You write integration tests by creating test projects that exercise multiple components
together, often involving real or in-memory databases, services, or APIs. You use
frameworks like xUnit or NUnit and configure dependencies to mimic production-like
environments.