Skip to content

Assert.DoesNotThrow

jnm2 edited this page Mar 18, 2017 · 6 revisions

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 );

See also...

Clone this wiki locally