Assert.DoesNotThrow - jnm2/nunit-docs-wiki GitHub Wiki
Assert.DoesNotThrow verifies that the delegate provided as an argument does not throw an exception. See Assert.DoesNotThrowAsync for asynchronous code.
void Assert.DoesNotThrow(TestDelegate code);
void Assert.DoesNotThrow(TestDelegate code,
string message, params object[] parms);