Migrate Static to Wrapper
Perform mechanical, codemod-style replacement of static dependency call sites with calls to injected wrapper interfaces or built-in abstractions. Operates on a bounded scope (single file, project, or namespace) so migrations can be done incrementally.
When to Use
- After wrappers have been generated (via
generate-testability-wrappers) or built-in abstractions identified
- Migrating
DateTime.UtcNow → TimeProvider.GetUtcNow() across a project
- Migrating
File.* → IFileSystem.File.* across a namespace
- Adding constructor injection for the new abstraction to affected classes
- Incremental migration: one project or namespace at a time
When Not to Use
- No wrapper or abstraction exists yet (use
generate-testability-wrappers first)
- The user wants to detect statics, not migrate them (use
detect-static-dependencies)
- The code does not use dependency injection and the user hasn't chosen ambient context
- Migrating between test frameworks (use the appropriate migration skill)
Inputs
| Input |
Required |
Description |
| Static pattern |
Yes |
What to replace (e.g., DateTime.UtcNow, File.ReadAllText) |
| Replacement abstraction |
Yes |
What to use instead (e.g., TimeProvider, IFileSystem) |
| Scope |
Yes |
File path, project (.csproj), namespace, or directory to migrate |
| Injection strategy |
No |
constructor (default), primary-constructor, or ambient |
Workflow
Step 1: Verify prerequisites
Before modifying any code:
Confirm the wrapper/abstraction exists: Check that the interface or built-in abstraction is available in the project. For TimeProvider, verify the target framework is .NET 8+ or Microsoft.Bcl.TimeProvider is referenced. For System.IO.Abstractions, verify the NuGet package is referenced.
Confirm DI registration exists: Check Program.cs or Startup.cs for the service registration. If missing, add it before proceeding.
Identify all files in scope: List the .cs files that will be modified. Exclude test projects, obj/, bin/, and generated code.
Step 2: Plan the migration for each file
For each file containing the static pattern, determine:
- Which class(es) contain the call sites — identify the class declarations
- Whether the class already has the dependency injected — check constructors for existing
TimeProvider, IFileSystem, etc. parameters
- The replacement expression for each call site
Replacement mapping
| Category |
Original |
DI replacement |
| Time |
DateTime.Now |
_timeProvider.GetLocalNow().LocalDateTime |
| Time |
DateTime.UtcNow |
_timeProvider.GetUtcNow().UtcDateTime |
| Time |
DateTime.Today |
_timeProvider.GetLocalNow().LocalDateTime.Date |
| Time |
DateTimeOffset.Now |
_timeProvider.GetLocalNow() |
| Time |
DateTimeOffset.UtcNow |
_timeProvider.GetUtcNow() |
| File |
File.ReadAllText(path) |
_fileSystem.File.ReadAllText(path) |
| File |
File.WriteAllText(path, text) |
_fileSystem.File.WriteAllText(path, text) |
| File |
File.Exists(path) |
_fileSystem.File.Exists(path) |
| File |
Directory.Exists(path) |
_fileSystem.Directory.Exists(path) |
| Env |
Environment.GetEnvironmentVariable(name) |
_env.GetEnvironmentVariable(name) |
| Console |
Console.WriteLine(msg) |
_console.WriteLine(msg) |
| Process |
Process.Start(info) |
_processRunner.Start(info) |
Apply the same pattern for other members in each category.
Preserve DateTimeKind — this is the most common silent regression. TimeProvider.GetUtcNow() / GetLocalNow() return a DateTimeOffset. Converting back to DateTime must keep the original Kind, otherwise you introduce a behavioral change even though the code still compiles:
DateTime.UtcNow has Kind == Utc → use .UtcDateTime (not .DateTime, which yields Kind == Unspecified).
DateTime.Now has Kind == Local → use .LocalDateTime (not .DateTime).
- When a call site consumes a
DateTimeOffset directly (a field/parameter/return already typed DateTimeOffset), drop the .UtcDateTime/.LocalDateTime suffix and assign the DateTimeOffset as-is — don't force it back through DateTime.
Match the target member's type: if the surrounding field/property is DateTime, keep it DateTime (via the Kind-correct property above); do not change it to DateTimeOffset as part of a "mechanical" migration — that is a design change, not a delegation.
Step 3: Add constructor injection
Add the new dependency following the class's existing pattern:
- Primary constructor (C# 12+): Add parameter to primary constructor:
public class OrderProcessor(ILogger<OrderProcessor> logger, TimeProvider timeProvider)
- Traditional constructor: Add
private readonly field + constructor parameter, matching the existing field naming convention (_camelCase or m_camelCase)
Static classes: use ambient context (no constructor injection)
A static class with only static members cannot receive constructor injection — adding an instance constructor or instance field would break it. Do not convert it to a non-static class just to inject the dependency; that changes its design and every call site. Instead, apply the ambient context pattern: expose a static, settable seam that defaults to the real implementation and is overridden once at composition/test setup.
When the user wants to keep the class static, the ambient seam below is the answer — present it as the solution and implement it directly. Do not hedge by offering "convert it to a non-static class" or "pass TimeProvider as a method parameter" as co-equal alternatives; those change the class's design or public API and are not what was asked. Lead with the seam, then note the parallelism trade-off.
public static class TimestampFormatter
{
// Ambient seam — defaults to the real clock, swap in tests.
public static TimeProvider Clock { get; set; } = TimeProvider.System;
public static string Now() => Clock.GetUtcNow().ToString("O");
}
Production: leave Clock at its TimeProvider.System default, or assign the DI-resolved TimeProvider once at startup (TimestampFormatter.Clock = app.Services.GetRequiredService<TimeProvider>();).
Tests: override Clock with a FakeTimeProvider and always restore it in a finally so a failing assertion can't leak the fake into other tests:
var original = TimestampFormatter.Clock;
TimestampFormatter.Clock = new FakeTimeProvider(instant);
try
{
// exercise code under test
}
finally
{
TimestampFormatter.Clock = original;
}
Parallelism caveat: a mutable static seam is process-global. Tests that mutate it must not run in parallel with each other (or with code that reads it) — put them in a non-parallel collection/class (e.g. xUnit [Collection] with parallelization disabled, or MSTest [DoNotParallelize]). Only if the class is not required to stay static and its tests must run fully parallel should you consider converting the caller to an instance with constructor injection instead — otherwise keep the ambient seam.
The same seam works for other statics (IFileSystem, custom wrappers): a public static <Abstraction> X { get; set; } defaulting to the real implementation, with the same restore-in-finally and non-parallel discipline.
Step 4: Replace call sites
Perform each replacement mechanically. For each call site:
- Replace the static call with the wrapper call
- Preserve the surrounding code structure (whitespace, comments, chaining)
- Add required
using directives if not already present
Adding using directives
| Abstraction |
Using directive |
TimeProvider |
None (in System namespace) |
IFileSystem |
using System.IO.Abstractions; |
IHttpClientFactory |
using System.Net.Http; (usually already present) |
| Custom wrappers |
using <wrapper namespace>; |
Step 5: Update affected test files
If test files exist for the migrated classes:
- Update constructor calls — add the new parameter to test class instantiation
- Use test doubles:
TimeProvider → new FakeTimeProvider() from Microsoft.Extensions.TimeProvider.Testing
IFileSystem → new MockFileSystem() from System.IO.Abstractions.TestingHelpers
- Custom wrappers →
new Mock<IWrapperName>() or hand-rolled fake
Step 6: Build verification
After all changes in the current scope:
dotnet build <project.csproj>
If the build fails:
- Missing using: Add the required
using directive
- Missing NuGet package: Run
dotnet add package <name>
- Constructor mismatch in tests: Update test instantiation (Step 5)
- Ambiguous call: Fully qualify the wrapper call
Step 7: Report changes
Summarize what was done:
## Migration Summary
**Pattern**: DateTime.UtcNow → TimeProvider.GetUtcNow()
**Scope**: MyProject/Services/
### Files Modified (production)
| File | Call Sites Replaced | Injection Added |
|------|--------------------:|:----------------|
| OrderProcessor.cs | 3 | Yes (constructor) |
| NotificationService.cs | 1 | Yes (primary ctor) |
### Files Modified (tests)
| File | Change |
|------|--------|
| OrderProcessorTests.cs | Added FakeTimeProvider parameter |
### Remaining (out of scope)
- MyProject/Legacy/ — 8 call sites not migrated (different namespace)
Validation
Common Pitfalls
| Pitfall |
Solution |
| Replacing statics in test code |
Only replace in production code; tests should use fakes/mocks |
| Breaking static classes |
Static classes can't have constructors — use the ambient context seam (Step 3) instead of converting them to non-static |
Missing FakeTimeProvider NuGet |
Add Microsoft.Extensions.TimeProvider.Testing to test project |
Replacing a DateTime value with .DateTime off a DateTimeOffset |
DateTimeOffset.DateTime returns Kind == Unspecified — use .UtcDateTime (for former DateTime.UtcNow) or .LocalDateTime (for former DateTime.Now) to preserve the original DateTimeKind. Only change the field/return type to DateTimeOffset if the user asked for it. |
| Migrating too much at once |
Stick to the defined scope — one project or namespace per run |
| Forgetting DI registration |
Always verify Program.cs/Startup.cs has the registration before replacing call sites |
1---2name: migrate-static-to-wrapper3description: Replace existing static dependency call sites with a wrapper or built-in abstraction that already exists or is registered in DI. Codemod-style bulk replacement of DateTime.Now/UtcNow to TimeProvider, File.ReadAllText to IFileSystem, and similar, across a bounded scope (file, project, namespace), adding constructor injection to affected classes and updating their unit tests to use a test double. USE FOR: replace DateTime.UtcNow/DateTime.Now with TimeProvider and add the constructor parameter, migrate static call sites to a wrapper already in DI, bulk replace File.* with IFileSystem, scoped migration of statics in only certain files, migrate a service to TimeProvider and update its unit tests to a controllable/fake time source, update test doubles when migrating off static DateTime/File calls. DO NOT USE FOR: detecting statics (use detect-static-dependencies), creating or registering the wrapper when it does not exist yet (use generate-testability-wrappers), migrating between test frameworks.4license: MIT5---67# Migrate Static to Wrapper89Perform mechanical, codemod-style replacement of static dependency call sites with calls to injected wrapper interfaces or built-in abstractions. Operates on a bounded scope (single file, project, or namespace) so migrations can be done incrementally.1011## When to Use1213- After wrappers have been generated (via `generate-testability-wrappers`) or built-in abstractions identified14- Migrating `DateTime.UtcNow` → `TimeProvider.GetUtcNow()` across a project15- Migrating `File.*` → `IFileSystem.File.*` across a namespace16- Adding constructor injection for the new abstraction to affected classes17- Incremental migration: one project or namespace at a time1819## When Not to Use2021- No wrapper or abstraction exists yet (use `generate-testability-wrappers` first)22- The user wants to detect statics, not migrate them (use `detect-static-dependencies`)23- The code does not use dependency injection and the user hasn't chosen ambient context24- Migrating between test frameworks (use the appropriate migration skill)2526## Inputs2728| Input | Required | Description |29|-------|----------|-------------|30| Static pattern | Yes | What to replace (e.g., `DateTime.UtcNow`, `File.ReadAllText`) |31| Replacement abstraction | Yes | What to use instead (e.g., `TimeProvider`, `IFileSystem`) |32| Scope | Yes | File path, project (.csproj), namespace, or directory to migrate |33| Injection strategy | No | `constructor` (default), `primary-constructor`, or `ambient` |3435## Workflow3637### Step 1: Verify prerequisites3839Before modifying any code:40411. **Confirm the wrapper/abstraction exists**: Check that the interface or built-in abstraction is available in the project. For `TimeProvider`, verify the target framework is .NET 8+ or `Microsoft.Bcl.TimeProvider` is referenced. For `System.IO.Abstractions`, verify the NuGet package is referenced.42432. **Confirm DI registration exists**: Check `Program.cs` or `Startup.cs` for the service registration. If missing, add it before proceeding.44453. **Identify all files in scope**: List the `.cs` files that will be modified. Exclude test projects, `obj/`, `bin/`, and generated code.4647### Step 2: Plan the migration for each file4849For each file containing the static pattern, determine:50511. **Which class(es) contain the call sites** — identify the class declarations522. **Whether the class already has the dependency injected** — check constructors for existing `TimeProvider`, `IFileSystem`, etc. parameters533. **The replacement expression** for each call site5455#### Replacement mapping5657| Category | Original | DI replacement |58|----------|----------|----------------|59| Time | `DateTime.Now` | `_timeProvider.GetLocalNow().LocalDateTime` |60| Time | `DateTime.UtcNow` | `_timeProvider.GetUtcNow().UtcDateTime` |61| Time | `DateTime.Today` | `_timeProvider.GetLocalNow().LocalDateTime.Date` |62| Time | `DateTimeOffset.Now` | `_timeProvider.GetLocalNow()` |63| Time | `DateTimeOffset.UtcNow` | `_timeProvider.GetUtcNow()` |64| File | `File.ReadAllText(path)` | `_fileSystem.File.ReadAllText(path)` |65| File | `File.WriteAllText(path, text)` | `_fileSystem.File.WriteAllText(path, text)` |66| File | `File.Exists(path)` | `_fileSystem.File.Exists(path)` |67| File | `Directory.Exists(path)` | `_fileSystem.Directory.Exists(path)` |68| Env | `Environment.GetEnvironmentVariable(name)` | `_env.GetEnvironmentVariable(name)` |69| Console | `Console.WriteLine(msg)` | `_console.WriteLine(msg)` |70| Process | `Process.Start(info)` | `_processRunner.Start(info)` |7172Apply the same pattern for other members in each category.7374> **Preserve `DateTimeKind` — this is the most common silent regression.** `TimeProvider.GetUtcNow()` / `GetLocalNow()` return a `DateTimeOffset`. Converting back to `DateTime` **must keep the original `Kind`**, otherwise you introduce a behavioral change even though the code still compiles:75>76> - `DateTime.UtcNow` has `Kind == Utc` → use `.UtcDateTime` (**not** `.DateTime`, which yields `Kind == Unspecified`).77> - `DateTime.Now` has `Kind == Local` → use `.LocalDateTime` (**not** `.DateTime`).78> - When a call site consumes a `DateTimeOffset` directly (a field/parameter/return already typed `DateTimeOffset`), drop the `.UtcDateTime`/`.LocalDateTime` suffix and assign the `DateTimeOffset` as-is — don't force it back through `DateTime`.79>80> Match the **target member's type**: if the surrounding field/property is `DateTime`, keep it `DateTime` (via the Kind-correct property above); do not change it to `DateTimeOffset` as part of a "mechanical" migration — that is a design change, not a delegation.8182### Step 3: Add constructor injection8384Add the new dependency following the class's existing pattern:8586- **Primary constructor** (C# 12+): Add parameter to primary constructor: `public class OrderProcessor(ILogger<OrderProcessor> logger, TimeProvider timeProvider)`87- **Traditional constructor**: Add `private readonly` field + constructor parameter, matching the existing field naming convention (`_camelCase` or `m_camelCase`)8889#### Static classes: use ambient context (no constructor injection)9091A `static` class with only static members **cannot** receive constructor injection — adding an instance constructor or instance field would break it. Do **not** convert it to a non-static class just to inject the dependency; that changes its design and every call site. Instead, apply the **ambient context** pattern: expose a static, settable seam that defaults to the real implementation and is overridden once at composition/test setup.9293When the user wants to keep the class static, the ambient seam below **is the answer** — present it as *the* solution and implement it directly. Do **not** hedge by offering "convert it to a non-static class" or "pass `TimeProvider` as a method parameter" as co-equal alternatives; those change the class's design or public API and are not what was asked. Lead with the seam, then note the parallelism trade-off.9495```csharp96public static class TimestampFormatter97{98 // Ambient seam — defaults to the real clock, swap in tests.99 public static TimeProvider Clock { get; set; } = TimeProvider.System;100101 public static string Now() => Clock.GetUtcNow().ToString("O");102}103```104105- Production: leave `Clock` at its `TimeProvider.System` default, or assign the DI-resolved `TimeProvider` once at startup (`TimestampFormatter.Clock = app.Services.GetRequiredService<TimeProvider>();`).106- Tests: override `Clock` with a `FakeTimeProvider` and **always restore it in a `finally`** so a failing assertion can't leak the fake into other tests:107108 ```csharp109 var original = TimestampFormatter.Clock;110 TimestampFormatter.Clock = new FakeTimeProvider(instant);111 try112 {113 // exercise code under test114 }115 finally116 {117 TimestampFormatter.Clock = original;118 }119 ```120121- **Parallelism caveat**: a mutable static seam is process-global. Tests that mutate it must **not** run in parallel with each other (or with code that reads it) — put them in a non-parallel collection/class (e.g. xUnit `[Collection]` with parallelization disabled, or MSTest `[DoNotParallelize]`). Only if the class is *not* required to stay static and its tests must run fully parallel should you consider converting the caller to an instance with constructor injection instead — otherwise keep the ambient seam.122- The same seam works for other statics (`IFileSystem`, custom wrappers): a `public static <Abstraction> X { get; set; }` defaulting to the real implementation, with the same restore-in-`finally` and non-parallel discipline.123124### Step 4: Replace call sites125126Perform each replacement mechanically. For each call site:1271281. Replace the static call with the wrapper call1292. Preserve the surrounding code structure (whitespace, comments, chaining)1303. Add required `using` directives if not already present131132#### Adding using directives133134| Abstraction | Using directive |135|------------|-----------------|136| `TimeProvider` | None (in `System` namespace) |137| `IFileSystem` | `using System.IO.Abstractions;` |138| `IHttpClientFactory` | `using System.Net.Http;` (usually already present) |139| Custom wrappers | `using <wrapper namespace>;` |140141### Step 5: Update affected test files142143If test files exist for the migrated classes:1441451. **Update constructor calls** — add the new parameter to test class instantiation1462. **Use test doubles**:147 - `TimeProvider` → `new FakeTimeProvider()` from `Microsoft.Extensions.TimeProvider.Testing`148 - `IFileSystem` → `new MockFileSystem()` from `System.IO.Abstractions.TestingHelpers`149 - Custom wrappers → `new Mock<IWrapperName>()` or hand-rolled fake150151### Step 6: Build verification152153After all changes in the current scope:154155```bash156dotnet build <project.csproj>157```158159If the build fails:160- **Missing using**: Add the required `using` directive161- **Missing NuGet package**: Run `dotnet add package <name>`162- **Constructor mismatch in tests**: Update test instantiation (Step 5)163- **Ambiguous call**: Fully qualify the wrapper call164165### Step 7: Report changes166167Summarize what was done:168169```170## Migration Summary171172**Pattern**: DateTime.UtcNow → TimeProvider.GetUtcNow()173**Scope**: MyProject/Services/174175### Files Modified (production)176| File | Call Sites Replaced | Injection Added |177|------|--------------------:|:----------------|178| OrderProcessor.cs | 3 | Yes (constructor) |179| NotificationService.cs | 1 | Yes (primary ctor) |180181### Files Modified (tests)182| File | Change |183|------|--------|184| OrderProcessorTests.cs | Added FakeTimeProvider parameter |185186### Remaining (out of scope)187- MyProject/Legacy/ — 8 call sites not migrated (different namespace)188```189190## Validation191192- [ ] All call sites in scope were replaced (none missed)193- [ ] Constructor injection added to all affected classes194- [ ] Field naming follows existing class conventions195- [ ] Required `using` directives added196- [ ] Required NuGet packages referenced197- [ ] Build succeeds after migration198- [ ] Test files updated with appropriate test doubles199- [ ] No behavioral changes introduced (wrapper delegates directly to the static)200- [ ] `DateTimeKind` preserved — former `DateTime.UtcNow` stays `Utc` (`.UtcDateTime`), former `DateTime.Now` stays `Local` (`.LocalDateTime`)201202## Common Pitfalls203204| Pitfall | Solution |205|---------|----------|206| Replacing statics in test code | Only replace in production code; tests should use fakes/mocks |207| Breaking static classes | Static classes can't have constructors — use the ambient context seam (Step 3) instead of converting them to non-static |208| Missing `FakeTimeProvider` NuGet | Add `Microsoft.Extensions.TimeProvider.Testing` to test project |209| Replacing a `DateTime` value with `.DateTime` off a `DateTimeOffset` | `DateTimeOffset.DateTime` returns `Kind == Unspecified` — use `.UtcDateTime` (for former `DateTime.UtcNow`) or `.LocalDateTime` (for former `DateTime.Now`) to preserve the original `DateTimeKind`. Only change the field/return type to `DateTimeOffset` if the user asked for it. |210| Migrating too much at once | Stick to the defined scope — one project or namespace per run |211| Forgetting DI registration | Always verify `Program.cs`/`Startup.cs` has the registration before replacing call sites |