-
Notifications
You must be signed in to change notification settings - Fork 643
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
Update to latest Xunit and Moq, fix test bugs, stop suppressing analyzers #10077
Merged
Conversation
This file contains 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
joelverhagen
changed the title
Update to latest Xunit, fix test bugs, stop suppressing analyzers
Update to latest Xunit and Moq, fix test bugs, stop suppressing analyzers
Jul 22, 2024
agr
reviewed
Jul 22, 2024
src/GitHubVulnerabilities2v3/Extensions/BlobStorageVulnerabilityWriter.cs
Show resolved
Hide resolved
agr
approved these changes
Jul 22, 2024
Yes, thank you! I will take ownership and do this too: |
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.
Currently we have a bunch of test bugs that are hidden by these problems:
[Fact]
or[Theory]
meaning test cases weren't running at allTask
orasync void
resulting assert does not get observed[Theory]
meaning only one variant of the test was really runningtest.ps1
had broken file paths in several cases... meaning the UT projects weren't event runningSummary of changes:
.editorconfig
. All it does is suppress everything meaning these warnings/errors were hidden!test.ps1
path issuetest.ps1
to catch when tests don't produce result XMLAssert.Single
,Assert.Empty
,Assert.Contains
, etc per the Xunit analyzerxUnit1015
in two cases where we have a child class provide test data to a parent class[MemberData]
(weird, but works)xUnit1032
inAccountsControllerFacts
since we provide child classes for this generic class meaning the tests do actually runEntitiesContext
. It was possible to work around the check viaSaveChanges
variantsMvcBuildViews=true
when building debug. This makesbuild.ps1
faster locally, does not affect CI/release.Progress on https://github.com/NuGet/Engineering/issues/5427.