Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use nunits new way of exception handling but I am finding it hard to find information on it and how to also use it with moq.

I have right now moq that throws a exception on a mocked method but I don't know how to use nunit to catch it and look at it.

share|improve this question

3 Answers

up vote 8 down vote accepted

There's a few different ways to do it; I use Assert.Throws.

var exception = Assert.Throws<YourTypeOfException>(()=> Action goes here);

E.g.

var exception = Assert.Throws<ArgumentNullException>(()=> new ChimpPuncher(null));

You can then query the exception object further if you want. E.g.

Assert.That(exception.Message, Text.Contains("paramname");
share|improve this answer

Why can't you enclose the mocked method call in a try/catch block and catch the specific exception being thrown?

share|improve this answer

best way to mention is: [ExpectedException(typeof(ApplicationException))]above the test method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.