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 3.8.3 #66

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 26, 2023

This PR contains the following updates:

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

Release Notes

microsoft/testfx (MSTest.TestAdapter)

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 v3.5.2 chore(deps): update mstest monorepo to 3.5.2 Aug 28, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 3e3fb01 to 0543ac2 Compare September 11, 2024 11:35
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.5.2 chore(deps): update mstest monorepo to 3.6.0 Sep 11, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 0543ac2 to aa243aa Compare October 3, 2024 16:29
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.6.0 chore(deps): update mstest monorepo to 3.6.1 Oct 3, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from aa243aa to 07c864f Compare October 31, 2024 16:14
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.6.1 chore(deps): update mstest monorepo to 3.6.2 Oct 31, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 07c864f to 8a4657e Compare November 12, 2024 15:18
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.6.2 chore(deps): update mstest monorepo to 3.6.3 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 8a4657e to 9d3e32a Compare December 3, 2024 16:57
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.6.3 chore(deps): update mstest monorepo to 3.6.4 Dec 3, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 9d3e32a to b53061b Compare December 20, 2024 16:48
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.6.4 chore(deps): update mstest monorepo to 3.7.0 Dec 20, 2024
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from b53061b to 3fd40c0 Compare January 13, 2025 17:36
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.7.0 chore(deps): update mstest monorepo to 3.7.1 Jan 13, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 3fd40c0 to 617ca18 Compare January 21, 2025 17:30
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.7.1 chore(deps): update mstest monorepo to 3.7.2 Jan 21, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 617ca18 to d4e0c85 Compare January 27, 2025 17:01
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.7.2 chore(deps): update mstest monorepo to 3.7.3 Jan 27, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from d4e0c85 to 7972f30 Compare February 12, 2025 14:56
@renovate renovate bot changed the title chore(deps): update mstest monorepo to 3.7.3 chore(deps): update mstest monorepo to 3.8.0 Feb 12, 2025
@renovate renovate bot force-pushed the renovate/mstest-monorepo branch from 7972f30 to 436af7f Compare February 18, 2025 18:35
@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
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.

0 participants