New to Claude Skills? Learn how to install them →

dotnet on GitHub

Writing MSTest Tests

Free

Modernize and create effective MSTest unit tests with ease.

by dotnet5.1k stars on dotnet/skills
2 views
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Writing MSTest Tests does

The Writing MSTest Tests skill is designed to assist developers in writing, creating, and modernizing unit tests using the MSTest framework, specifically versions 3.x and 4.x. This skill provides guidance on best practices and current APIs, making it easier for users to implement effective testing solutions. Whether you are writing new tests from scratch or looking to improve existing ones, this skill offers a structured approach to ensure your tests are robust and maintainable.

With this skill, users can address common issues in MSTest, such as replacing generic assertions like Assert.IsTrue with more specific assertions that provide clearer failure messages. It also helps in fixing common pitfalls, such as swapped arguments in Assert.AreEqual, and converting data-driven tests to use modern patterns like ValueTuples. The skill covers a wide range of MSTest features, including lifecycle management, async testing, and conditional execution, ensuring that users can leverage the full capabilities of the framework.

This skill is particularly useful for developers who are working on .NET applications and need to ensure their unit tests are up to date with the latest MSTest practices. It is also beneficial for those who are troubleshooting failing tests or seeking to enhance their test suite's quality. By providing step-by-step instructions and best practices, this skill enables users to write effective tests that contribute to the overall quality of their software projects.

When to use it

Use this skill when you need to write new MSTest tests or improve existing ones, particularly when seeking to implement best practices and modern assertions.

When not to use it

This skill is not suitable for running tests, conducting quality audits, or for users working with other testing frameworks like xUnit or NUnit.

What you can build with it

Creating New MSTest Tests

Use this skill to write new unit tests from scratch, following modern conventions and best practices.

Modernizing Existing Tests

Leverage this skill to improve outdated MSTest tests by implementing specific fixes and enhancements.

Fixing Assertion Issues

Utilize this skill to troubleshoot and resolve common assertion errors in your MSTest tests.

How to install Writing MSTest Tests

View source

1. Install with the skills CLI

npx skills add dotnet/skills/writing-mstest-tests --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by dotnet

Writing MSTest Tests

Help users write effective, modern unit tests with MSTest 3.x/4.x using current APIs and best practices.

When to Use

  • User wants to write new MSTest unit tests
  • User wants to improve or modernize existing MSTest tests by implementing concrete fixes
  • User asks about MSTest assertion APIs, data-driven patterns, or test lifecycle
  • User asks to replace Assert.IsTrue with more specific assertions (collections, nulls, types, comparisons)
  • User asks to replace hard casts with type-checking assertions in tests
  • User needs help fixing a specific MSTest test bug or failing assertion
  • User asks to fix swapped Assert.AreEqual argument order (expected first, actual second)
  • User asks to convert DynamicData from IEnumerable<object[]> to ValueTuple-based data
  • User asks to fix or understand an MSTest analyzer diagnostic (an MSTESTxxxx warning/error)

When Not to Use

  • User needs a test quality audit, anti-pattern detection, or flaky-test investigation (use test-anti-patterns)
  • User needs to run or execute tests (use the run-tests skill)
  • User needs to upgrade from MSTest v1/v2 to v3 (use migrate-mstest-v1v2-to-v3)
  • User needs to upgrade from MSTest v3 to v4 (use migrate-mstest-v3-to-v4)
  • User needs CI/CD pipeline configuration
  • User is using xUnit, NUnit, or TUnit (not MSTest)

Inputs

InputRequiredDescription
Code under testNoThe production code to be tested
Existing test codeNoCurrent tests to fix, update, or modernize
Test scenario descriptionNoWhat behavior the user wants to test

Response Guidelines

  • Specific API or pattern questions (assertions, data-driven, lifecycle): Jump directly to the relevant workflow step. Do not follow the full workflow.
  • Write new tests from scratch: Follow the full workflow.
  • Review and fix existing tests: Fix only the issues present. Do not add unrelated improvements.

Workflow

Step 1: Determine project setup

Check the test project for MSTest version and configuration:

  • If using MSTest.Sdk (<Sdk Name="MSTest.Sdk">): modern setup, all features available
  • If using MSTest metapackage: modern setup (MSTest 3.x+)
  • If using MSTest.TestFramework + MSTest.TestAdapter: check version for feature availability

Recommend MSTest.Sdk or the MSTest metapackage for new projects:

<!-- Option 1: MSTest SDK (simplest, recommended for new projects) -->
<Project Sdk="MSTest.Sdk">
  <PropertyGroup>
    <TargetFramework>net9.0</TargetFramework>
  </PropertyGroup>
</Project>

When using MSTest.Sdk, put the version in global.json instead of the project file so all test projects get bumped together:

{
  "msbuild-sdks": {
    "MSTest.Sdk": "3.8.2"
  }
}
<!-- Option 2: MSTest metapackage -->
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net9.0</TargetFramework>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="MSTest" Version="3.8.2" />
  </ItemGroup>
</Project>

Step 2: Write test classes following conventions

Apply these structural conventions:

  • Seal test classes with sealed for performance and design clarity
  • Use [TestClass] on the class and [TestMethod] on test methods
  • Follow the Arrange-Act-Assert (AAA) pattern
  • Name tests using MethodName_Scenario_ExpectedBehavior
  • Use separate test projects with naming convention [ProjectName].Tests
[TestClass]
public sealed class OrderServiceTests
{
    [TestMethod]
    public void CalculateTotal_WithDiscount_ReturnsReducedPrice()
    {
        // Arrange
        var service = new OrderService();
        var order = new Order { Price = 100m, DiscountPercent = 10 };

        // Act
        var total = service.CalculateTotal(order);

        // Assert
        Assert.AreEqual(90m, total);
    }
}

Step 3: Use modern assertion APIs

Pick the most specific assertion for each test scenario. More specific assertions produce better failure messages and make the test's intent clear:

What you are testingAssertion
Two values are equalAssert.AreEqual(expected, actual)
Same object instance (reference identity)Assert.AreSame(expected, actual)
Value is nullAssert.IsNull(value)
Value is not nullAssert.IsNotNull(value)
Collection is emptyAssert.IsEmpty(collection)
Collection is not emptyAssert.IsNotEmpty(collection)
Collection has exactly N itemsAssert.HasCount(N, collection)
Collection contains an itemAssert.Contains(item, collection)
Collection does not contain an itemAssert.DoesNotContain(item, collection)
Object is a specific typeAssert.IsInstanceOfType<T>(value)
Code throws an exceptionAssert.ThrowsExactly<T>(() => ...)

Prefer Assert class methods over StringAssert or CollectionAssert where both exist.

Equality, null, and reference checks

Assert.AreEqual(expected, actual);      // Value equality
Assert.AreSame(expected, actual);       // Reference equality -- same object instance
Assert.IsNull(value);
Assert.IsNotNull(value);

Exception testing -- use Assert.Throws instead of [ExpectedException]

// Synchronous
var ex = Assert.ThrowsExactly<ArgumentNullException>(() => service.Process(null));
Assert.AreEqual("input", ex.ParamName);

// Async
var ex = await Assert.ThrowsExactlyAsync<InvalidOperationException>(
    async () => await service.ProcessAsync(null));
  • Assert.Throws<T> matches T or any derived type
  • Assert.ThrowsExactly<T> matches only the exact type T

Collection assertions

Assert.Contains(expectedItem, collection);
Assert.DoesNotContain(unexpectedItem, collection);
var single = Assert.ContainsSingle(collection);  // Returns the single element
Assert.HasCount(3, collection);
Assert.IsEmpty(collection);
Assert.IsNotEmpty(collection);

Replace generic Assert.IsTrue with specialized assertions -- they give better failure messages:

Instead ofUse
Assert.IsTrue(list.Count > 0)Assert.IsNotEmpty(list)
Assert.IsTrue(list.Count == 0)Assert.IsEmpty(list)
Assert.IsTrue(list.Count() == 3)Assert.HasCount(3, list)
Assert.IsTrue(x != null)Assert.IsNotNull(x)
Assert.IsTrue(x == null)Assert.IsNull(x)
Assert.AreEqual(a, b) for same instanceAssert.AreSame(a, b) -- reference identity
Assert.IsTrue(!list.Contains(item))Assert.DoesNotContain(item, list)
list.Single(predicate) + Assert.IsNotNullAssert.ContainsSingle(list)
Assert.IsTrue(list.Contains(item))Assert.Contains(item, list)

String assertions

Assert.Contains("expected", actualString);
Assert.StartsWith("prefix", actualString);
Assert.EndsWith("suffix", actualString);
Assert.MatchesRegex(@"\d{3}-\d{4}", phoneNumber);

Type assertions

// MSTest 3.x -- out parameter
Assert.IsInstanceOfType<MyHandler>(result, out var typed);
typed.Handle();

// MSTest 4.x -- returns directly
var typed = Assert.IsInstanceOfType<MyHandler>(result);

Comparison assertions

Assert.IsGreaterThan(lowerBound, actual);
Assert.IsLessThan(upperBound, actual);
Assert.IsInRange(actual, low, high);

Step 4: Use data-driven tests for multiple inputs

DataRow for inline values

[TestMethod]
[DataRow(1, 2, 3)]
[DataRow(0, 0, 0, DisplayName = "Zeros")]
[DataRow(-1, 1, 0)]
public void Add_ReturnsExpectedSum(int a, int b, int expected)
{
    Assert.AreEqual(expected, Calculator.Add(a, b));
}

DynamicData with ValueTuples (preferred for complex data)

Prefer ValueTuple return types over IEnumerable<object[]> for type safety:

[TestMethod]
[DynamicData(nameof(DiscountTestData))]
public void ApplyDiscount_ReturnsExpectedPrice(decimal price, int percent, decimal expected)
{
    var result = PriceCalculator.ApplyDiscount(price, percent);
    Assert.AreEqual(expected, result);
}

// ValueTuple -- preferred (MSTest 3.7+)
public static IEnumerable<(decimal price, int percent, decimal expected)> DiscountTestData =>
[
    (100m, 10, 90m),
    (200m, 25, 150m),
    (50m, 0, 50m),
];

When you need metadata per test case, use TestDataRow<T>:

public static IEnumerable<TestDataRow<(decimal price, int percent, decimal expected)>> DiscountTestDataWithMetadata =>
[
    new((100m, 10, 90m)) { DisplayName = "10% discount" },
    new((200m, 25, 150m)) { DisplayName = "25% discount" },
    new((50m, 0, 50m)) { DisplayName = "No discount" },
];

Step 5: Handle test lifecycle correctly

  • Always initialize in the constructor -- this enables readonly fields and works correctly with nullability analyzers (fields are guaranteed non-null after construction)
  • Use [TestInitialize] only for async initialization, combined with the constructor for sync parts
  • Use [TestCleanup] for cleanup that must run even on failure
  • Inject TestContext via constructor (MSTest 3.6+)
[TestClass]
public sealed class RepositoryTests
{
    private readonly TestContext _testContext;
    private readonly FakeDatabase _db;  // readonly -- guaranteed by constructor

    public RepositoryTests(TestContext testContext)
    {
        _testContext = testContext;
        _db = new FakeDatabase();  // sync init in ctor
    }

    [TestInitialize]
    public async Task InitAsync()
    {
        // Use TestInitialize ONLY for async setup
        await _db.SeedAsync();
    }

    [TestCleanup]
    public void Cleanup() => _db.Reset();
}

Execution order

  1. [AssemblyInitialize] -- once per assembly
  2. [ClassInitialize] -- once per class
  3. Per test:
    • With TestContext property injection: Constructor -> set TestContext property -> [TestInitialize]
    • With constructor injection of TestContext: Constructor (receives TestContext) -> [TestInitialize]
  4. Test method
  5. [TestCleanup] -> DisposeAsync -> Dispose -- per test
  6. [ClassCleanup] -- once per class
  7. [AssemblyCleanup] -- once per assembly

Step 6: Apply cancellation and timeout patterns

Always use TestContext.CancellationToken with [Timeout]:

[TestMethod]
[Timeout(5000)]
public async Task FetchData_ReturnsWithinTimeout()
{
    var result = await _client.GetDataAsync(_testContext.CancellationToken);
    Assert.IsNotNull(result);
}

Step 7: Use advanced features where appropriate

Retry flaky tests (MSTest 3.9+)

Use only for genuinely flaky external dependencies (network, file system), not to paper over race conditions or shared state issues.

[TestMethod]
[Retry(3)]
public void ExternalService_EventuallyResponds() { }

Conditional execution (MSTest 3.10+)

[TestMethod]
[OSCondition(OperatingSystems.Windows)]
public void WindowsRegistry_ReadsValue() { }

[TestMethod]
[CICondition(ConditionMode.Exclude)]
public void LocalOnly_InteractiveTest() { }

Parallelization

[assembly: Parallelize(Workers = 4, Scope = ExecutionScope.MethodLevel)]

[TestClass]
[DoNotParallelize]  // Opt out specific classes
public sealed class DatabaseIntegrationTests { }

Step 8: Fix MSTest analyzer diagnostics (MSTESTxxxx)

The MSTest.Analyzers package reports MSTESTxxxx diagnostics during build and in the IDE. The analyzers come in automatically with the modern MSTest metapackage and MSTest.Sdk (and are bundled with MSTest.TestFramework 3.7+); for other setups, reference MSTest.Analyzers explicitly. Most rules have an automated code fix (light bulb) in Visual Studio. When fixing one by hand, apply the idiomatic change below rather than suppressing the rule.

When asked to "fix MSTESTxxxx", look it up in the table of common diagnostics below, apply the fix, and rebuild to confirm the diagnostic is gone. The table is not exhaustive — for any rule it does not list, consult the full reference and apply the documented guidance: https://learn.microsoft.com/dotnet/core/testing/mstest-analyzers/overview.

Common diagnostics and their fixes

RuleProblemFix
MSTEST0006[ExpectedException] usedReplace with Assert.Throws<T> / Assert.ThrowsExactly<T> (Step 3)
MSTEST0017Assert.AreEqual args swappedPut expected first, actual second
MSTEST0023Negated boolean assertion (Assert.IsTrue(!x))Use Assert.IsFalse(x)
MSTEST0025Always-false condition assertedUse Assert.Fail("reason")
MSTEST0032Always-true assert conditionRemove or correct the assertion
MSTEST0037Sub-optimal assert (IsTrue(x == null))Use the specific assert (Assert.IsNull, HasCount, etc.) (Step 3)
MSTEST0038Assert.AreSame on value typesUse Assert.AreEqual (value types box to distinct references)
MSTEST0039Legacy Assert.ThrowsExceptionUse Assert.Throws / Assert.ThrowsExactly (+ Async variants)
MSTEST0044[DataTestMethod] usedReplace with [TestMethod] (it now supports data rows)
MSTEST0046StringAssert usedUse the equivalent Assert method (Assert.Contains, StartsWith, ...)
MSTEST0052Explicit DynamicDataSourceTypeDrop it — the source type is inferred
MSTEST0042 / MSTEST0060Duplicate [DataRow] / [TestMethod]Remove the duplicate attribute
MSTEST0024Static TestContext fieldMake it an instance member (Step 5)
MSTEST0045 / MSTEST0049 / MSTEST0054Timeout/token not cooperativeFlow TestContext.CancellationToken into the awaited call (Step 6)
MSTEST0036Member shadows a base test memberRename or use override instead of new
MSTEST0061Runtime OS check inside a testUse [OSCondition(...)] (Step 7)
MSTEST0002 / MSTEST0003 / MSTEST0005 / MSTEST0007–0014Invalid test class / method / fixture / TestContext / data-source layoutCorrect the signature named by the rule (e.g. make it public, fix the return type and parameters, add static where required)

Tuning which rules are enforced

Use the MSTestAnalysisMode MSBuild property (MSTest 3.8+) to control the rule set globally:

<PropertyGroup>
  <!-- None | Default | Recommended | All -->
  <MSTestAnalysisMode>Recommended</MSTestAnalysisMode>
</PropertyGroup>
  • Recommended escalates info-level rules to warnings and is the mode most projects should adopt.
  • A handful of rules are completely opt-in (e.g. MSTEST0015, MSTEST0019–0022); enable them per project via .editorconfig when you want their convention enforced.
  • Prefer fixing the underlying code over suppressing a diagnostic. Suppress only with a documented justification.

Frequently asked questions about Writing MSTest Tests

Similar skills