xunit.analyzers
xunit.analyzers copied to clipboard
Roslyn analyzers for xUnit.net (please open issues in https://github.com/xunit/xunit)
Fixes https://github.com/xunit/xunit/issues/2395 The old code in WalkDownImplicitConversions checked `IOperation.IsImplicit` instead of `IConversionOperation.Conversion.IsImplicit`, which apparently was not the same thing.
Fixes xunit/xunit#1415
This PR adds the ability for users to generate and view code coverage reports for `xunit.analyzers`, using OpenCover and ReportGenerator. It's as easy as navigating to the repo root in...
This PR fix [issue 2560](https://github.com/xunit/xunit/issues/2560).
Suggested initial version of a solution for issue [xunit/xunit#2866](https://github.com/xunit/xunit/issues/2866). Includes analyzer for proposed new rule xUnit1044: TheoryData type arguments should be serializable. Please let me know if you have any...
A solution to issue xunit/xunit#1510, specifically the following part: > Optionally could do the same thing with Assert.Empty(...) and Assert.NotEmpty(...), mapping them to Assert.DoesNotContain(...) and Assert.Contains(...), respectively. The analyzer and...
When pass negative int in inlinedata and the parameter of test is uint, the test will fail in runtime