Published on
Last Updated on
Estimated Reading Time: 0 min
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));
}