Docs: more small consistency fixes#8863
Merged
Evangelink merged 1 commit intoJun 7, 2026
Merged
Conversation
* 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>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR is a documentation-only follow-up that improves naming and formatting consistency across the repo’s main entry-point docs, making terminology and reference sections align better.
Changes:
- Aligns “Microsoft Test Framework” naming for MSTest in the root
README.md. - Normalizes
.NETcapitalization and documents theTestResultsartifacts folder indocs/dev-guide.md. - Reorganizes
docs/README.mdso a Learn tutorial link appears under examples (not RFCs) and fixes “MSTest” capitalization.
Show a summary per file
| File | Description |
|---|---|
| README.md | Aligns MSTest acronym expansion with the file’s H1 naming. |
| docs/README.md | Moves a non-RFC Learn tutorial link into the examples section and fixes MSTest capitalization. |
| docs/dev-guide.md | Fixes .NET capitalization in workload list and adds missing TestResults description to the build layout legend. |
Copilot's findings
- Files reviewed: 3/3 changed files
- Comments generated: 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #8862 with a few more small docs consistency fixes spotted in the same files.
README.md— name consistencyMSTest, Microsoft Testing Framework, is a testing framework...— the same file's H1 isMicrosoft Test Framework (MSTest). ReplacedTesting->Testso the acronym expands the same way in both places.docs/dev-guide.md.Net->.NETThe VS workloads list has
.Net Core cross-platform development; the two bullets above it already use.NET.Build layout table missing
TestResultsThe
artifacts/directory tree listsTestResultsbut the legend table below doesn't describe it. Added a row.docs/README.mdWriting your first test with mstestwas the first bullet under "you can refer to the list of RFCs" — it's a learn.microsoft.com tutorial, not an RFC. Moved it into the "detailed examples" list above (where similar tutorial links live) and capitalizedmstest->MSTest.Verification
No behavioral or build impact — Markdown-only doc changes.