I created Codinators.XunitHelpers(a NuGet package) to add some useful unit testing functionality that is missing in xUnit.
This release adds support for reporting multiple assertion failures in one method in xUnit tests similar to how Nunit does it.
Installation
Install it by using the following command
dotnet add package Codinators.XunitHelpers
Usage
[Fact]
public void MultiAssertTest()
{
var result = 2 + 2;
AssertHelper.AssertMultiple(() => Assert.IsType<double>(result),
() => Assert.Equal(5, result),
() => Assert.Equal(4, result));
}
Top comments (0)