Convert .NET tests from NUnit 3/4 to MSTest v4 while preserving VSTest or MTP. Use for replacing NUnit/NUnit3TestAdapter packages, Test/TestCase/ TestCaseSource/Values attributes, constraint assertions, SetUp/TearDown, OneTimeSetUp, SetUpFixture, FixtureLifeCycle, TestContext, categories, retries, timeouts, and NUnit parallelization. Also use when a "convert NUnit to MSTest" request may already be migrated: inspect and report the no-op. Do not use for NUnit version upgrades, xUnit/TUnit conversion, MSTest upgrades, or runner-only VSTest-to-MTP migration.
Permissions
Files
SKILL.md
migrate-nunit-to-mstest
Convert .NET tests from NUnit 3/4 to MSTest v4 while preserving VSTest or MTP. Use for replacing NUnit/NUnit3TestAdapter packages, Test/TestCase/ TestCaseSource/Values attributes, constraint assertions, SetUp/TearDown, OneTimeSetUp, SetUpFixture, FixtureLifeCycle, TestContext, categories, retries, timeouts, and NUnit parallelization. Also use when a "convert NUnit to MSTest" request may already be migrated: inspect and report the no-op. Do not use for NUnit version upgrades, xUnit/TUnit conversion, MSTest upgrades, or runner-only VSTest-to-MTP migration.
license
MIT
NUnit -> MSTest Migration
Convert NUnit 3 or 4 tests to MSTest v4 without changing the target framework or test platform. A successful migration builds, discovers the same test cases, and preserves pass/fail, lifecycle, data, filtering, and concurrency semantics.
Scope
Use this skill only when the project contains NUnit packages or source and the user wants MSTest. If the project already uses MSTest and contains no NUnit tests, report that no framework migration is needed and make no changes.
Do not combine this framework conversion with a target-framework upgrade or VSTest/MTP migration. Complete and verify one migration before starting another.
Workspace Contract
Search the current working directory for projects and source; never look for user files under this skill's directory.
Classify the deliverable: "convert this project" means edit, build, and test; "give me a plan" means answer without editing.
Preserve the user's requested project scope. Shared props may be changed only when they own NUnit package or runner configuration for that scope.
The final response must state the source NUnit version, preserved runner, changed files, high-risk semantic mappings, and actual test counts.
Response Mode
Full migration request: inspect, edit, build, and run tests. Do not stop after a plan.
Focused compile error or API question: apply only the relevant mapping.
Unsupported target framework: stop before changing packages. MSTest v4 requires .NET 8+ or .NET Framework 4.6.2+ for test applications; offer a separately approved TFM upgrade or MSTest v3.
Decisions That Change the Result
Detected state
Required action
No NUnit package, namespace, attribute, or constraint remains
Stop, make no changes, and run the existing test command once to prove the already-MSTest project is healthy.
Source uses VSTest
Preserve VSTest. Retain and update an explicit Microsoft.NET.Test.Sdk pin when the repository owns one; do not introduce MTP properties.
Source uses MTP
Replace NUnit-specific MTP configuration with MSTest MTP configuration. Prefer MSTest.Sdk; with the metapackage set EnableMSTestRunner=true and OutputType=Exe.
NUnit uses its default fixture lifecycle
NUnit normally shares one fixture instance across all test cases; MSTest creates a new class instance per test. Move state that must remain class-shared behind static fields initialized by [ClassInitialize], or prove the state is per-test before leaving it as an instance field.
NUnit has no Parallelizable configuration
Preserve serial execution. Do not add [assembly: Parallelize]; NUnit and MSTest are both serial by default.
NUnit explicitly enables parallel execution
Translate the effective scope and worker count. Never infer method-level parallelism from fixture-level settings.
For detailed mappings, search references/mapping-cheatsheet.md for constructs present in the project and read only those sections.
Fast Path
For a routine migration, converge in four phases: one batched discovery pass, one edit pass, one dotnet test, and one concise result.
Use an existing CI/test result as the baseline when available.
Run a pre-edit baseline when counts are unavailable and the project contains parameterized tests, fixture state, namespace setup, retries, custom attributes, or explicit parallelization.
Do not run separate restore, build, and test commands when dotnet test is sufficient.
Do not delete NUnit runner configuration until its behavior has been translated.
Workflow
1. Establish the baseline
Batch-read test projects, central package files, global.json, .runsettings, testconfig.json, and NUnit configuration.
Detect NUnit from NUnit, NUnit3TestAdapter, NUnit.Analyzers, NUnit.Framework, NUnit.Framework.Legacy, and using NUnit.Framework.
State whether the source is NUnit 3 or 4 from the resolved package version.
Detect VSTest or MTP and preserve it. Use platform-detection only when ambiguous.
Record target frameworks and stop if MSTest v4 does not support them.
Inventory high-risk constructs:
[TestFixture(...)], [TestFixtureSource], [FixtureLifeCycle], constructors with parameters
The pin is illustrative for the current release; during a real migration resolve and pin the current stable version. Preserve an explicit Microsoft.NET.Test.Sdk dependency for VSTest when the source project owns one. When preserving MTP, prefer MSTest.Sdk; otherwise use EnableMSTestRunner=true and OutputType=Exe.
Do not change TargetFramework. Remove NUnit .runsettings adapter settings only after translating relevant behavior.
3. Perform the mechanical conversion
NUnit
MSTest
[TestFixture] or fixture with tests
[TestClass]
[Test]
[TestMethod]
[TestCase(...)]
[TestMethod] + [DataRow(...)]
[TestCaseSource(nameof(Cases))]
[TestMethod] + [DynamicData(nameof(Cases))]
[SetUp] / [TearDown]
[TestInitialize] / [TestCleanup]
[OneTimeSetUp] / [OneTimeTearDown]
static [ClassInitialize] / [ClassCleanup]
[Category(value)]
[TestCategory(value)]
[Property(key, value)]
[TestProperty(key, value)]
[Ignore("reason")]
[Ignore("reason")] plus [TestMethod]
[Timeout(ms)]
[Timeout(ms)] plus [TestMethod]
[Retry(n)]
[Retry(n - 1)] plus [TestMethod] when n > 1; remove it when n = 1
Remove using NUnit.Framework; and using NUnit.Framework.Legacy;. Add using Microsoft.VisualStudio.TestTools.UnitTesting; when using the metapackage; MSTest.Sdk supplies an implicit global using.
Do not mechanically seal classes or flatten inherited setup methods.
4. Resolve semantic mappings
Load the mapping cheatsheet for every high-risk construct found in Step 1. These rules are mandatory:
NUnit's default LifeCycle.SingleInstance differs from MSTest's per-test class instances. Preserve class-shared fields explicitly.
[OneTimeSetUp] and [OneTimeTearDown] become static MSTest methods. Move any instance state they use to a static holder rather than merely adding static.
NUnit Assert.Throws<T> and Throws.TypeOf<T> require an exact exception type and map to Assert.ThrowsExactly<T>. NUnit Assert.Catch<T> and Throws.InstanceOf<T> permit derived types and map to Assert.Throws<T>.
NUnit Is.TypeOf<T> maps to Assert.IsExactInstanceOfType<T>; Is.InstanceOf<T> maps to Assert.IsInstanceOfType<T>.
NUnit equality constraints compare sequences element-by-element. Use Assert.AreSequenceEqual on MSTest 4.3+ or CollectionAssert.AreEqual with materialized lists; never use reference-based Assert.AreEqual for sequences.
TestCase(ExpectedResult=...) and TestCaseData.Returns(...) require rewriting the target test to assert the expected result.
Preserve per-row names, categories, and ignores by returning TestDataRow<T> from DynamicData when needed. NUnit row properties have no direct TestDataRow<T> equivalent and require a custom data source or an explicit metadata decision.
MSTest 4.4 combinatorial attributes can map NUnit [Combinatorial], [Values], [Range], and [Random]; add using Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial;. Constructor semantics differ, so translate NUnit ranges and random bounds explicitly. [Sequential] still requires explicit rows or a custom data source.
NUnit [Pairwise] has no MSTest built-in. Preserve the exact generated rows in DynamicData or use a verified pairwise ITestDataSource; full Cartesian combinations change test counts and execution cost.
Convert [Theory], [Datapoint], and [DatapointSource] into explicit DynamicData or combinatorial sources. Preserve automatic bool/enum values and the rule that a theory fails when every row violates its assumptions.
[Explicit], [Repeat], parameterized fixtures, fixture sources, and Assert.Multiple have no behavior-identical mechanical mapping. Rewrite deliberately or report manual follow-up; never approximate silently.
NUnit [Retry(n)] counts the initial attempt, while MSTest [Retry(n)] counts retries after the initial attempt. Subtract one and review NUnit RetryExceptions filters separately.
[CancelAfter(ms)] maps to [Timeout(ms, CooperativeCancellation = true)]. Under VSTest, remove NUnit's injected CancellationToken parameter and use an injected or property-based TestContext.CancellationToken; VSTest otherwise treats it as missing data. Retain a method token only when the preserved runner is proven to support injection. Expand fixture-level defaults to every affected test and lifecycle method.
[Apartment(ApartmentState.STA)] maps to [STATestClass] or [STATestMethod]. Set UseSTASynchronizationContext = true when async continuations must remain on the STA thread. MTA is the MSTest default. [RequiresThread] and [SingleThreaded] guarantee thread identity that MSTest attributes do not generally preserve; use a custom executor or report manual follow-up.
Map NUnit platform and culture gates to OSCondition, ArchitectureCondition, or a MemberCondition helper. Map SetCulture and SetUICulture to setup/cleanup that saves and restores the original culture.
Expand [DefaultFloatingPointTolerance] into explicit deltas on every affected assertion. Preserve method-over-fixture-over-assembly precedence.
5. Preserve lifecycle and namespace setup
[SetUp] and [TearDown] remain per-test lifecycle methods.
For NUnit's default single fixture instance, audit every mutable instance field. If tests depend on sharing, use static state created by [ClassInitialize] and released by [ClassCleanup].
[FixtureLifeCycle(LifeCycle.InstancePerTestCase)] already matches MSTest class instantiation; remove the attribute and keep per-test instance state.
[SetUpFixture] is namespace-scoped in NUnit. MSTest assembly initialization is assembly-wide. Use [AssemblyInitialize] only when the NUnit setup already covers the whole assembly; otherwise move setup into the affected classes or a shared helper without widening scope.
Preserve setup/cleanup inheritance order. Do not merge base and derived methods unless the resulting order is proven equivalent.
Map NUnit TestContext.WriteLine to an injected or property-based MSTest TestContext.WriteLine. Translate directory, test-name, and attachment APIs individually.
6. Preserve parallelization and ordering
NUnit and MSTest both run serially by default. Do not add parallelization for an unconfigured NUnit project.
When NUnit explicitly opts in:
assembly [Parallelizable(ParallelScope.Fixtures)] -> [assembly: Parallelize(Workers = N, Scope = ExecutionScope.ClassLevel)]
fixture [Parallelizable(ParallelScope.Children)] or method-level parallelism -> method-level MSTest parallelization only after confirming shared instance state is safe
[NonParallelizable] -> [DoNotParallelize] when parallelization is enabled
[LevelOfParallelism(N)] -> Workers = N
resource-specific serialization can use MSTest 4.4 [ResourceLock("key")] when it preserves a narrower lock than [DoNotParallelize]
NUnit [Order] is not general dependency semantics. Use MSTest 4.4 [DependsOn] only when the source truly expresses a prerequisite; otherwise remove ordering by making tests independent or report manual follow-up.
7. Verify parity
Run tests with the same platform, filter, and configuration used for the baseline.
Compare discovered, passed, failed, and skipped counts.
Investigate every difference:
missing rows -> DataRow, DynamicData, combinatorial, or row metadata conversion