Today, we're shipping three new releases:
It's been 2 weeks since the release of 1.12.0 RTM.
As always, we'd like to thank all the users who contributed to the success of xUnit.net through usage, feedback, and code contributions. 🎉
These release notes are a comprehensive list of changes from 1.12.0 to 1.13.0.
async void
test method signatures. xUnit1048 will trigger as a warning in v2 projects, alerting the
developer that async void
test methods are no longer supported in v3 and should be converted to async Task
instead, whereas xUnit1049 will trigger as an error in v3 projects (and also altering the user that async ValueTask
is acceptable as well). Note that ValueTask
support for test method signatures only exists in v3.
TheoryRowData
constructors).
xunit/xunit#2914