Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 26, 2023

This PR contains the following updates:

Package Change Age Confidence
MSTest.TestAdapter 3.0.23.11.1 age confidence
MSTest.TestFramework 3.0.23.11.1 age confidence

Release Notes

microsoft/testfx (MSTest.TestAdapter)

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

v3.8.2

See the release notes here

v3.8.1

See the release notes here

v3.8.0

See the release notes here

Announcements

v3.7.3

See the release notes here

v3.7.2

See the release notes here

v3.7.1

See the release notes here

v3.7.0

See the release notes here

Announcements

MSTest.Analyzers is now a transitive dependency of MSTest.TestFramework and thus no longer needs to be manually installed.

Note: The only rules enabled by default as warnings, which could potentially cause build errors when updating MSTest, have been carefully selected and thoroughly validated. These rules specifically address real runtime issues related to the usage of MSTest, ensuring that no purely stylistic or low-impact analyzers are enforced by default.

v3.6.4

See the release notes here

v3.6.3

See the release notes here

v3.6.2

See the release notes here

v3.6.1

See the release notes here

v3.6.0

See the release notes here

Special shoutout to @​SimonCropp for his exceptional contribution in improving the quality of the repository.

v3.5.2

See the release notes here

v3.5.1

See the release notes here

v3.5.0

See the release notes here

v3.4.3

See the release notes here

v3.4.2: v.3.4.2

See the release notes here

v3.4.1

See the release notes here

v3.4.0

Here are the highlights of the current release, full change log is available below:

MSTest
New and improved analyzers

We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests.

One example of a new analyzer that was added in 3.4.0 is MSTEST0024: Do not store TestContext in static members. This analyzer has info severity by default, and will show a message, when you store TestContext in a static member in your class. This is not recommended, and you should be using a TestContext property instead:

image

The other analyzers added in this release:

If you've just learned about MSTest analyzers, please also check out the analyzers that were added in previous releases. They will help you ensure that your test classes and test methods are recognized by MSTest and are not accidentally ignored.

The analyzers are automatically installed with the MSTest NuGet meta-package. But can also be installed separately using the MSTest.Analyzers NuGet package.

More timeout options

Timeout can now be specified on all fixture methods, including ClassCleanup, AssemblyCleanup, TestCleanup and TestInitalize. In this case I want my [ClassCleanup] to time out after 1 second:

image

Alternatively timeouts can be specified through runsettings. For example like this:

<RunSettings>
  <MSTest>
    <ClassCleanupTimeout>1000</ClassCleanupTimeout>
  </MSTest>
</RunSettings>
Better errors on data mismatch

When you provide data that don't match your test method signature, the test will fail with an informative message, rather than just "Parameter count mismatch.".

image

image

(There is also an analyzer that helps with the same while you are writing the code.)

MSTest SDK updates

We've introduced MSTest project SDK in this .NET Blog post.

Choosing version in global.json

In this release we are promoting a way to define the MSTest.Sdk version in global.json. This makes it easier to specify the version in a single place, instead of in every project.

{
    "msbuild-sdks": {
        "MSTest.Sdk": "3.4.0"
    }
}
<Project Sdk="MSTest.Sdk">
  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
  </PropertyGroup>
</Project>
Playwright support

We've added a property to enable Playwright, to simplify creating web tests:

<Project Sdk="MSTest.Sdk">
  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>

    <EnablePlaywright>true</EnablePlaywright>
  </PropertyGroup>
</Project>
Aspire testing support

Similarly we've added a property to enable Aspire testing:

<Project Sdk="MSTest.Sdk">
  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>

    <EnabledAspireTesting>true</EnabledAspireTesting>
  </PropertyGroup>
</Project>
Central package management

NuGet central package management can now be used together with MSTest.Sdk.

More examples of SDK projects

To see more examples of projects using MSTest.Sdk:
https://github.com/microsoft/testfx/tree/rel/3.4/samples/public/DemoMSTestSdk

MSTest runner
Simpler banner

We've took inspiration from MSBuild and simplified the runner banner, to show the information, on a single line:

.NET Testing Platform v1.2.0+3abae95b6 (UTC 2024/05/03) [win-x64 - .NET 8.0.4]
STA support and WinUI support

The runner can be configured to run in STA (Single Thread Apartment) mode, which is required for running UI tests. And it also supports WinUI workloads.

See MSTestRunnerWinUI example

And more

And much more, see the complete change log here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.4.0

New Contributors

A special thank you to all our new contributors:

v3.3.1

See the release notes here

v3.3.0

See the release notes here.

v3.2.2

See the release notes here.

v3.2.1

See the release notes here.

v3.1.1

See the release notes here.

v3.0.4

See the release notes here.

v3.0.3

See the release notes here.


Configuration

📅 Schedule: Branch creation - "after 4am and before 8am on saturday" in timezone Asia/Shanghai, 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.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • 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 changed the title chore(deps): update mstest monorepo to v3.0.3 chore(deps): update mstest monorepo to v3.0.4 Jun 1, 2023
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from e9c4cfe to a3d874a Compare June 1, 2023 15:32
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.0.4 chore(deps): update mstest monorepo to v3.1.1 Jul 14, 2023
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from a3d874a to d30d78f Compare July 14, 2023 11:08
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from d30d78f to c24b90e Compare January 24, 2024 16:47
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.1.1 chore(deps): update mstest monorepo to v3.2.0 Jan 24, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from c24b90e to 9418618 Compare February 14, 2024 00:24
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.2.0 chore(deps): update mstest monorepo to v3.2.1 Feb 14, 2024
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.2.1 chore(deps): update mstest monorepo to v3.2.2 Feb 22, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 9418618 to b62954f Compare February 22, 2024 15:40
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from b62954f to 4628add Compare April 3, 2024 22:01
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.2.2 chore(deps): update mstest monorepo to v3.3.0 Apr 3, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 4628add to 840b47e Compare April 4, 2024 15:42
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.3.0 chore(deps): update mstest monorepo to v3.3.1 Apr 4, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 840b47e to fa4233e Compare May 23, 2024 11:24
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.3.1 chore(deps): update mstest monorepo to v3.4.0 May 23, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from fa4233e to 47e9a99 Compare May 27, 2024 15:50
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.0 chore(deps): update mstest monorepo to v3.4.1 May 27, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 47e9a99 to 6e1cd82 Compare May 30, 2024 11:32
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.1 chore(deps): update mstest monorepo to v3.4.2 May 30, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 6e1cd82 to 4362e67 Compare May 30, 2024 14:01
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.2 chore(deps): update mstest monorepo to v3.4.3 May 30, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 4362e67 to ed39515 Compare July 16, 2024 23:29
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.3 chore(deps): update mstest monorepo to v3.5.0 Jul 16, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from ed39515 to f169aa5 Compare August 5, 2024 20:39
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.5.0 chore(deps): update mstest monorepo to v3.5.1 Aug 5, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from f169aa5 to 3e3fb01 Compare August 13, 2024 14:51
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.5.1 chore(deps): update mstest monorepo to v3.5.2 Aug 13, 2024
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.8.0 chore(deps): update mstest monorepo to 3.8.1 Feb 18, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 436af7f to 85083db Compare February 19, 2025 12:12
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.8.1 chore(deps): update mstest monorepo to 3.8.2 Feb 19, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 85083db to f539d85 Compare March 17, 2025 20:51
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.8.2 chore(deps): update mstest monorepo to 3.8.3 Mar 17, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from f539d85 to 280cdb5 Compare May 20, 2025 13:27
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.8.3 chore(deps): update mstest monorepo to 3.9.0 May 20, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 280cdb5 to 49955d4 Compare May 27, 2025 13:09
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.9.0 chore(deps): update mstest monorepo to 3.9.1 May 27, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 49955d4 to 46f4a09 Compare June 10, 2025 16:45
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.9.1 chore(deps): update mstest monorepo to 3.9.2 Jun 10, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 46f4a09 to 2692bce Compare June 17, 2025 20:06
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.9.2 chore(deps): update mstest monorepo to 3.9.3 Jun 17, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 2692bce to fa5eb37 Compare July 30, 2025 02:25
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.9.3 chore(deps): update mstest monorepo to 3.10.0 Jul 30, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from fa5eb37 to a705572 Compare August 5, 2025 21:32
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.10.0 chore(deps): update mstest monorepo to 3.10.1 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from a705572 to d897f4c Compare August 12, 2025 09:52
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.10.1 chore(deps): update mstest monorepo to 3.10.2 Aug 12, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from d897f4c to 40025e2 Compare August 26, 2025 08:59
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.10.2 chore(deps): update mstest monorepo to 3.10.3 Aug 26, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 40025e2 to 7b76533 Compare September 2, 2025 23:06
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.10.3 chore(deps): update mstest monorepo to 3.10.4 Sep 2, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 7b76533 to 20ae9ac Compare September 30, 2025 19:27
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.10.4 chore(deps): update mstest monorepo to 3.10.5 Sep 30, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 20ae9ac to f7541be Compare October 1, 2025 21:38
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.10.5 chore(deps): update mstest monorepo to 3.11.0 Oct 1, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from f7541be to 9b7c775 Compare November 11, 2025 14:01
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.11.0 chore(deps): update mstest monorepo to 3.11.1 Nov 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant