Uh oh!
There was an error while loading. Please reload this page.
Bug Fix #258333 : Tests running multiple times in case we have multiple test projects - #4
Merged
Conversation
Abhitej John (AbhitejJohn)
commented
Sep 1, 2016
Contributor
Jayarani garg (@jayaranigarg) 👍 Push it in. |
This was referenced Apr 29, 2026
This was referenced Jun 4, 2026
Amaury Levé (Evangelink) added a commit
that referenced
this pull request
Jul 14, 2026
Append the product version as an anchor so nuget.org's Release Notes tab deep-links to the entry for that release: MSTest packages use VersionPrefix (e.g. #4.4.0) and Microsoft.Testing.Platform packages use TestingPlatformVersionPrefix (e.g. #2.4.0), which keeps extension packages with their own VersionPrefix pointing at the right platform entry. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6b5e055b-a59c-423f-aa05-3403db796d95
Jakub Jareš (nohwnd) added a commit
that referenced
this pull request
Aug 10, 2026
Addresses the remaining three semantic gaps from Amaury's review: - Return types (#3): resolve Task/ValueTask at compilation start and compare by symbol, so Task<T>/ValueTask<T> are rejected; require non-async void. - ClassInitialize vs ClassCleanup params (#4): split the class-fixture kind so ClassInitialize requires exactly one TestContext while ClassCleanup allows zero or one; a parameterless legacy [ClassInitialize] is no longer flagged. - Hiding (#2): make suppression member-kind-aware and signature-based. Instance fixtures are suppressed only by a same-name derived method that is itself a valid fixture; test methods only by a same-signature method; class fixtures accumulate and are never name-suppressed. Overrides still always suppress. Adds C# tests for each case plus two Visual Basic tests confirming language parity. 🤖 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
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 freeto 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.
-Added UT