We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The analyzer reports this piece of code:
Dictionary<string, object> dict = new Dictionary<string, object>(); dict.Should().HaveCount(1);
and wants me to convert it to .Should().ContainSingle() but this is not supported for the Dictionary type.
.Should().ContainSingle()
Dictionary
The text was updated successfully, but these errors were encountered:
fixed #77
5248e46
fixed #77 (#79)
476f0d3
@FantasyTeddy just released 0.11.4
Sorry, something went wrong.
#77 is no longer correct
7c80950
feat: enable collection analyzers for any collection including dictio…
5a81bb4
…naries (#208) * enable collection analyzers for any collection including dictionaries * #77 is no longer correct
Successfully merging a pull request may close this issue.
Description
The analyzer reports this piece of code:
and wants me to convert it to
.Should().ContainSingle()
but this is not supported for theDictionary
type.Versions
The text was updated successfully, but these errors were encountered: