Skip to content

chore(deps): update mstest monorepo (major)#3322

Open
renovate[bot] wants to merge 2 commits intomasterfrom
renovate/major-mstest-monorepo
Open

chore(deps): update mstest monorepo (major)#3322
renovate[bot] wants to merge 2 commits intomasterfrom
renovate/major-mstest-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Oct 9, 2025

This PR contains the following updates:

Package Change Age Confidence
MSTest.Sdk 3.8.24.1.0 age confidence
MSTest.TestAdapter 3.11.14.1.0 age confidence
MSTest.TestFramework 3.11.14.1.0 age confidence
Microsoft.Testing.Platform 1.5.22.1.0 age confidence

Release Notes

microsoft/testfx (MSTest.Sdk)

v4.1.0

See the release notes here

v4.0.2

See the release notes here

v4.0.1

See the release notes here

v4.0.0

What is new?
Assert.That

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"
CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
Error Message: Assert.AreEqual failed. Expected:<Giraffe>. Actual:<>. 
'expected' expression: '"Giraffe"', 'actual' expression: 'animal'.
Breaking changes

We hidden many types that should have never been public in the first place. We believe that most of the changes won't have any real user impact. For the changes where we expect user impact migration guide from v3 is provided: https://learn.microsoft.com/dotnet/core/testing/unit-testing-mstest-migration-v3-v4

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#4.0.0
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#2.0.0

Full changelog here: microsoft/testfx@v3.11.0...v4.0.0

v3.11.1

See the release notes here

v3.11.0

See the release notes here

v3.10.5

See the release notes here

v3.10.4

See the release notes here

v3.10.3

See the release notes here

v3.10.2

See the release notes here

v3.10.1

See the release notes here

v3.10.0

See the release notes here

v3.9.3

What's Changed
  • Simpler fix for dotnet test when using retry by @​Youssef1313 in #​5732. Note that this PR targets rel/3.9 branch. For 3.10, we did a different fix: #​5717

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.9.3
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#1.7.3

Full Changelog: microsoft/testfx@v3.9.2...v3.9.3

v3.9.2

What's Changed

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.9.2
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#1.7.2

Full Changelog: microsoft/testfx@v3.9.1...v3.9.2

v3.9.1

What's Changed

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.9.1
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#1.7.1

Full Changelog: microsoft/testfx@v3.9.0...v3.9.1

v3.9.0

In this release we focused a lot on providing fixes for MSTest and Microsoft.Testing.Platform. The most notable new features and fixes are:

MSTest
Microsoft.Testing.Platform

We've also improved the dotnet test experience in dotnet SDK, especially around Retry plugin experience, and started dogfooding the experience in our own repository. Please check out how to enable the new dotnet test experience for Microsoft.Testing.Platform in net10 by following this link, and help us dogfood it.

New Contributors

See the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.9.0
See the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#1.7.0

Full Changelog: microsoft/testfx@v3.8.3...v3.9.0

v3.8.3

See the release notes here


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 4 times, most recently from f4a6f1d to 6b02682 Compare October 14, 2025 20:46
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 2 times, most recently from f021876 to c57cd8b Compare October 27, 2025 02:15
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 2 times, most recently from b0b3eea to ff27822 Compare November 3, 2025 02:04
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 4 times, most recently from 5e0499a to b509e02 Compare November 13, 2025 07:57
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 10 times, most recently from dabbcc6 to cecad90 Compare November 28, 2025 15:41
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 3 times, most recently from 9158ad5 to d26a363 Compare December 10, 2025 04:41
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 5 times, most recently from 54ca9b9 to a697c88 Compare December 17, 2025 21:19
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 4 times, most recently from c9872f5 to fb7c803 Compare January 14, 2026 01:47
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 6 times, most recently from cd44b1e to 7a83a61 Compare January 30, 2026 13:06
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v4 (major) chore(deps): update mstest monorepo (major) Jan 31, 2026
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 12 times, most recently from c3bc33f to 05a8bbe Compare February 6, 2026 22:01
@renovate renovate bot force-pushed the renovate/major-mstest-monorepo branch 5 times, most recently from e582ddc to 9b6b873 Compare February 11, 2026 06:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants