You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move Throw Assertions from the TUnit.Assertions.AssertConditions.Throws namespace to TUnit.Assertions or TUnit.Assertions.Extensions for consistency with other assertions #2561
Small quibble, but whenever we use Assert.That and an assertion extension, for example, IsEqualTo, the implicit usings cover this, and no special using statement is needed.
But when doing Assert.That(() => myFunc()).Throws<Exception>(), intellisense adds the TUnit.Assertions.AssertConditions.Throws namespace using.
Is it possible to add this namespace to the TUnit.Assertions.targets file for a cleaner test file?