Scaffolding an Integration Test Project for Oracle-to-PostgreSQL Migration Creates a compilable, empty xUnit test project with transaction management and seed data infrastructure for a single target project. Run once per project before writing tests. Workflow Step 1: Inspect the target project Read the target project's to determine the .NET version and existing package references. Match these versions exactly — do not upgrade. Step 2: Create the xUnit test project - Target the same .NET version as the application under test. - Add NuGet packages for Oracle database connectivity and xUnit. - A…