Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NUnit and Microsoft Test Platform
# NUnit and Microsoft.Testing.Platform

## Overview

Microsoft Test Platform (MTP) is the new platform for testing from Microsoft. Test projects can be run as executables,
Microsoft.Testing.Platform (MTP) is the new platform for testing from Microsoft. Test projects can be run as executables,
as with [NUnitLite](../nunit/running-tests/NUnitLite-Runner.md) currently. There is no longer a test runner; the
executable _is_ the test runner.

Expand Down Expand Up @@ -38,13 +38,13 @@ You can switch between `VSTest` and `dotnet test` using a property in your cspro
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
```

See [this article](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#dotnet-test---microsofttestingplatform-mode)
See [this article](https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#dotnet-test---microsofttestingplatform-mode)
for more information.

## Information on the Microsoft Test Platform
## Information on the Microsoft.Testing.Platform

* [Microsoft Test Platform](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-intro?tabs=dotnetcli)
* [Use Microsoft.Testing.Platform with dotnet test](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-integration-dotnet-test)
* [Microsoft Test Platform Architecture](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-architecture)
* [Microsoft.Testing.Platform](https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-intro)
* [Use Microsoft.Testing.Platform with dotnet test](https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🏆 Nice catch on removing the default en-us.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Credit to @Evangelink :)

* [Microsoft.Testing.Platform Architecture](https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-architecture)
* [NUnit Samples](https://github.com/nunit/nunit3-vs-adapter.issues/tree/master/Issue1152)
* [Adapter issue for implementing MTP](https://github.com/nunit/nunit3-vs-adapter/issues/1152)
Loading