ThrowsNothing Constraint
ThrowsNothingConstraint
asserts that the delegate passed as its argument does not throw an exception.
Constructor
ThrowsNothingConstraint()
Syntax
Throws.Nothing
Example of Use
Assert.That(() => SomeMethod(actual), Throws.Nothing);