Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update mstest monorepo to v3.4.3 #223

Merged
merged 1 commit into from
Jun 9, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 13, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
MSTest.TestAdapter 3.2.2 -> 3.4.3 age adoption passing confidence
MSTest.TestFramework 3.2.2 -> 3.4.3 age adoption passing confidence

Release Notes

microsoft/testfx (MSTest.TestAdapter)

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.


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 becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from ca43e10 to 0c43cab Compare April 14, 2024 15:35
@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 14, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 0c43cab to fcf520c Compare May 6, 2024 14:37
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch 3 times, most recently from 9471dad to f9251cc Compare May 26, 2024 23:48
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from f9251cc to 73966e3 Compare June 2, 2024 10:27
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.3.1 chore(deps): update mstest monorepo to v3.4.0 Jun 2, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 73966e3 to e3044a5 Compare June 6, 2024 15:51
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.0 chore(deps): update mstest monorepo to v3.4.1 Jun 6, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from e3044a5 to f072109 Compare June 9, 2024 10:36
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.1 chore(deps): update mstest monorepo to v3.4.2 Jun 9, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch 2 times, most recently from 601708a to 5a11472 Compare June 9, 2024 16:08
@renovate renovate bot changed the title chore(deps): update mstest monorepo to v3.4.2 chore(deps): update mstest monorepo to v3.4.3 Jun 9, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 5a11472 to 3711f18 Compare June 9, 2024 23:09
@ChrisPulman ChrisPulman enabled auto-merge (squash) June 9, 2024 23:09
@ChrisPulman ChrisPulman merged commit de8afe2 into main Jun 9, 2024
2 checks passed
@ChrisPulman ChrisPulman deleted the renovate/mstest-monorepo branch June 9, 2024 23:17
Copy link

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 24, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant