Test with NO expected exception

Yury Pogrebnyak picture Yury Pogrebnyak · Mar 21, 2012 · Viewed 43.9k times · Source

I want to create NUnit test to ensure that my function does not throw an exception. Is there some specific way to do it, or I should just write

[Test]
public void noExceptionTest() {
  testedFunction();
}

and it will succeed if no exception is thrown?

Answer

sll picture sll · Mar 21, 2012
Assert.DoesNotThrow(() => { /* custom code block here*/});

OR just method

Assert.DoesNotThrow(() => CallMymethod());

For more details see NUnit Exception Asserts