How do I use Assert.Throws to assert the type of the exception and the actual message wording.

Something like this:

Assert.Throws<Exception>(
    ()=>user.MakeUserActive()).WithMessage("Actual exception message")

The method I am testing throws multiple messages of the same type, with different messages, and I need a way to test that the correct message is thrown depending on the context.

link|improve this question

58% accept rate
feedback

4 Answers

up vote 55 down vote accepted

Assert.Throws returns the exception that's thrown which lets you assert on the exception.

var ex = Assert.Throws<Exception>(() => user.MakeUserActive());
Assert.That(ex.Message, Is.EqualTo("Actual exception message"));

So if no exception is thrown, or an exception of the wrong type is thrown, the first Assert.Throws assertion will fail. However if an exception of the correct type is thrown then you can now assert on the actual exception that you've saved in the variable.

By using this pattern you can assert on other things than the exception message, e.g. in the case of ArgumentException and derivatives, you can assert that the parameter name is correct:

var ex = Assert.Throws<ArgumentNullException>(() => foo.Bar(null));
Assert.That(ex.ParamName, Is.EqualTo("bar"));

You can also use the fluent API for doing these asserts:

Assert.That(() => foo.Bar(null), 
Throws.Exception
  .TypeOf<ArgumentNullException>()
  .With.Property("ParamName")
  .EqualTo("bar"));

A little tip when asserting on exception messages is to decorate the test method with the SetCultureAttribute to make sure that the thrown message is using the expected culture. This comes into play if you store your exception messages as resources to allow for localization.

link|improve this answer
1  
+1 For the SetCultureAttribute tip. Incisive! – Ergwun Jun 25 '11 at 9:07
feedback

You can now use the ExpectedException attributes, e.g.

[Test]
[ExpectedException(typeof(InvalidOperationException), 
 ExpectedMessage="You can't do that!"]
public void MethodA_WithNull_ThrowsInvalidOperationException()
{
    MethodA(null);
}
link|improve this answer
feedback

It's a long time since this issue was raised, I realize, but I recently ran into the same thing, and suggest this function for MSTest:

public bool AssertThrows(Action action) where T : Exception 
{ 
try {action();} 
catch(Exception exception) 
{ 
    if (exception.GetType() == typeof(T)) return true; 
} 
return false; 
}

usage:

Assert.IsTrue(AssertThrows<FormatException>(delegate{ newMyMethod(MyParameter); }));

More here: http://phejndorf.wordpress.com/2011/02/21/assert-that-a-particular-exception-has-occured/

link|improve this answer
feedback

You should take a look at Visual T#: a programming language specialized for unit testing.

It would be as simple as :

assert thrown ArgumentNullException;

for a simple exception check and

assert thrown ArgumentNullException ex {
  assert ex.Message == "Actual exception message"
}

for your sample.

It is a lot more understandable than NUnit syntax!

link|improve this answer
4  
"It is a lot more understandable than NUnit syntax!" Isn't that a bit subjective? – Patrik Hägne Oct 25 '09 at 20:05
1  
From someone who is new to unit testing frameworks it isn't the syntax the confuses me, it is keeping the test simple enough to make sense -- so methodology is the problem for me. – Richard Slater Mar 20 '10 at 19:27
8  
-1 for pimping your own product without explicitly stating this. – Andy_Vulhop Aug 24 '10 at 20:23
feedback

Your Answer

 
or
required, but never shown

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