From 9e461ccec6ebb29e14875679c535c24989e75f39 Mon Sep 17 00:00:00 2001 From: Amaury Leveque <223556219+Copilot@users.noreply.github.com> Date: Fri, 5 Jun 2026 17:21:38 +0200 Subject: [PATCH] Docs: more small consistency fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * README.md: `Microsoft Testing Framework` -> `Microsoft Test Framework` to match the file's own H1 (`Microsoft Test Framework (MSTest)`). * docs/dev-guide.md: `.Net Core` -> `.NET Core` (the two workload bullets above it already use `.NET`). * docs/dev-guide.md: add `TestResults` row to the artifacts legend table — the directory was already in the tree above but missing from the table. * docs/README.md: move `Writing your first test with MSTest` out of the RFCs bullet list (it's a learn.microsoft.com tutorial, not an RFC) into the `detailed examples` list above it. Capitalize `mstest` -> `MSTest` while at it. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 2 +- docs/README.md | 2 +- docs/dev-guide.md | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 449b75e8af..a536947fbd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This repository is the home for Microsoft.Testing.Platform and extensions, as we Microsoft.Testing.Platform is a lightweight alternative to VSTest. For more information, see [Microsoft.Testing.Platform overview](https://aka.ms/mtp-overview). -MSTest, Microsoft Testing Framework, is a testing framework for .NET applications. It allows you to write tests, use Test Explorer, create test suites, and apply the red, green, and refactor patterns to write code. +MSTest, Microsoft Test Framework, is a testing framework for .NET applications. It allows you to write tests, use Test Explorer, create test suites, and apply the red, green, and refactor patterns to write code. This is a fully supported, open source, and cross-platform test framework with which to write tests targeting .NET Framework, .NET Core, .NET, UWP, and WinUI on Windows, Linux, and Mac. diff --git a/docs/README.md b/docs/README.md index bda573971c..bd37222f2d 100644 --- a/docs/README.md +++ b/docs/README.md @@ -17,6 +17,7 @@ You can find the main differences with MSTest v1 in [Deltas w.r.t MSTest V1](del You can find detailed examples and explanations of MSTest features at +- [Writing your first test with MSTest](https://learn.microsoft.com/dotnet/core/testing/unit-testing-with-mstest) - [MSTest element via runsettings](https://learn.microsoft.com/visualstudio/test/configure-unit-tests-by-using-a-dot-runsettings-file#mstest-element) - [Use the MSTest framework in unit tests](https://learn.microsoft.com/visualstudio/test/using-microsoft-visualstudio-testtools-unittesting-members-in-unit-tests) - [Create a data-driven unit test](https://learn.microsoft.com/visualstudio/test/how-to-create-a-data-driven-unit-test) @@ -27,7 +28,6 @@ You can find detailed examples and explanations of MSTest features at For technical reasoning and implementation details, you can refer to the list of RFCs: -- [Writing your first test with mstest](https://learn.microsoft.com/dotnet/core/testing/unit-testing-with-mstest) - [Framework Extensibility Trait Attributes](RFCs/001-Framework-Extensibility-Trait-Attributes.md) - [Framework Extensibility for Custom Assertions](RFCs/002-Framework-Extensibility-Custom-Assertions.md) - [Customize Running tests](RFCs/003-Customize-Running-Tests.md) diff --git a/docs/dev-guide.md b/docs/dev-guide.md index 9e89df3400..cad1ad9217 100644 --- a/docs/dev-guide.md +++ b/docs/dev-guide.md @@ -8,7 +8,7 @@ To build and test all functionalities of MSTest, we recommend installing [Visual - `.NET desktop development` - `Universal Windows Platform development` -- `.Net Core cross-platform development` +- `.NET Core cross-platform development` ## Recommended workflow @@ -125,6 +125,7 @@ with | bin | Build output of each project. | | obj | Intermediate directory for each project. | | packages | NuGet packages produced by all projects in the repo. | +| TestResults | Test results produced by test runs. | | SymStore | Storage for converted Windows PDBs | | log | Build binary log and other logs. | | tmp | Temp files generated during build. |