The title says it all - how do I use Assert (or other Test class?) do verify that an exception has been thrown?

Thanks :)

link|improve this question

65% accept rate
Which unit testing framework are you using? – Kevin Pullin Jun 1 '09 at 5:04
Visual Studio Integrated – Alex Jun 1 '09 at 5:05
Doesn't ExpectedException attribute help? ref: msdn.microsoft.com/en-us/library/… – shahkalpesh Jun 1 '09 at 5:10
Funny, I just finished looking for the answer to this, found it at stackoverflow.com/questions/741029/testing-exceptions. – dfjacobs Jun 1 '09 at 5:12
feedback

9 Answers

up vote 82 down vote accepted

For "Visual Studio Team Test" it appears you apply the ExpectedException attribute to the test's method.

Sample from the documentation here: A Unit Testing Walkthrough with Visual Studio Team Test

[TestMethod]
[ExpectedException(typeof(ArgumentException),
    "A userId of null was inappropriately allowed.")]
public void NullUserIdInConstructor()
{
   LogonInfo logonInfo = new LogonInfo(null, "P@ss0word");
}
link|improve this answer
6  
ExpectedException attribute above works in NUnit as well (but [TestMethod] should be [Test]). – dbkk Jun 1 '09 at 5:20
1  
@dbkk: Doesnt work exactly the same in NUnit - the message is treated as a string that needs to matcvh the exception message (and IU think that makes more sense) – Ruben Bartelink Jun 25 '09 at 10:48
feedback
try {
    somethingThatShouldThrowAnAcception();
    Assert.Fail(); // If it gets to this line, no exception was thrown
} catch (Exception) { }

You should be able to adapt this approach to whatever you like -- including specifying what kinds of exceptions to catch. If you only expect certain types, finish the catch blocks off with:

} catch (GoodException) {
} catch (Exception) {
    // not the right kind of exception
    Assert.Fail();
}

EDIT: As you can see, there are some framework-specific solutions to your problem. This trick could come in handy later, when/if you're using another framework. ;) One advantage is that you get fine-grained control over which line is supposed to throw the exception.

link|improve this answer
2  
+1, I use this way instead of the attribute when I need to make assertions beyond just the type of exception. For example, what if one needs to check that certain fields in the exception instance are set to certain values. – Pavel Repin Jun 1 '09 at 5:38
I like this because you don't have to specify the exact error message like with the attribute approach – user12345613 Jan 12 at 18:06
feedback

If you're using MSTest, which originally didn't have an ExpectedException attribute, you could do this:

try 
{
    SomeExceptionThrowingMethod()
    Assert.Fail("no exception thrown");
}
catch (Exception ex)
{
    Assert.IsTrue(ex is SpecificExceptionType);
}
link|improve this answer
feedback

Be wary of using ExpectedException, as it can lead to several pitfalls as demonstrated here:

http://geekswithblogs.net/sdorman/archive/2009/01/17/unit-testing-and-expected-exceptions.aspx

And here:

http://xunit.codeplex.com/Wiki/View.aspx?title=Comparisons#note1

If you need to test for exceptions, there are less frowned upon ways. You can use the try{act/fail}catch{assert} method, which can be useful for frameworks that don't have direct support for exception tests other than ExpectedException.

A better alternative is to use xUnit.NET, which is a very modern, forward looking, and extensible unit testing framework that has learned from all the others mistakes, and improved. One such improvement is Assert.Throws, which provides a much better syntax for asserting exceptions.

You can find xUnit.NET at CodePlex: http://www.codeplex.com/xunit

link|improve this answer
3  
Note that NUnit 2.5 also supports Assert.Throws style syntax now too - nunit.com/index.php?p=releaseNotes&r=2.5 – Alconja Jun 1 '09 at 5:54
The way that the unit tests stop to let you know about the exception when using ExpectedException drives me crazy. Why did MS think it was a good idea to have a manual step in automated tests? Thanks for the links. – Ant Apr 6 '11 at 12:25
@Ant: MS copied NUnit...so the real question is, why did NUnit think it was a good idea? – jrista Apr 6 '11 at 16:50
feedback

My preferred method for implementing this is to write a method called Throws, and use it just like any other Assert method. Unfortunately, .NET doesn't allow you to write a static extension method, so you can't use this method as if it actually belongs to the build in Assert class; just make another called MyAssert or something similar. The class looks like this:

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace YourProject.Tests
{
    public static class MyAssert
    {
        public static void Throws<T>( Action func ) where T : Exception
        {
            var exceptionThrown = false;
            try
            {
                func.Invoke();
            }
            catch ( T )
            {
                exceptionThrown = true;
            }

            if ( !exceptionThrown )
            {
                throw new AssertFailedException(
                    String.Format("An exception of type {0} was expected, but not thrown", typeof(T))
                    );
            }
        }
    }
}

That means that your unit test looks like this:

    [TestMethod()]
    public void ExceptionTest()
    {
        String testStr = null;

        MyAssert.Throws<NullReferenceException>( () => testStr.ToUpper(  ) );
    }

Which looks and behaves much more like the rest of your unit test syntaxes.

link|improve this answer
1  
I like this approach. – Daniel James Bryars Sep 22 '11 at 23:11
1  
I think that is the best answer so far! – Ekaterina Oct 21 '11 at 11:33
so you dont like attributes? – Mickey Perlstein May 14 at 12:08
feedback

It is an attribute on the test method... you don't use Assert. Looks like this:

[ExpectedException(typeof(ExceptionType))]
public void YourMethod_should_throw_exception()
link|improve this answer
feedback

In a project i´m working on we have another solution doing this.

First I don´t like the ExpectedExceptionAttribute becuase it does take in consideration which method call that caused the Exception.

I do this with a helpermethod instead.

Test

[TestMethod]
public void AccountRepository_ThrowsExceptionIfFileisCorrupt()
{
     var file = File.Create("Accounts.bin");
     file.WriteByte(1);
     file.Close();

     IAccountRepository repo = new FileAccountRepository();
     TestHelpers.AssertThrows<SerializationException>(()=>repo.GetAll());            
}

HelperMethod

public static TException AssertThrows<TException>(Action action) where TException : Exception
    {
        try
        {
            action();
        }
        catch (TException ex)
        {
            return ex;
        }
        Assert.Fail("Expected exception was not thrown");

        return null;
    }

Neat, isn´t it;)

link|improve this answer
feedback

This is going to depend on what test framework are you using?

In MbUnit, for example, you can specify the expected exception with an attribute to ensure that you are getting the exception you really expect.

[ExpectedException(typeof(ArgumentException))]

link|improve this answer
feedback

Check out nUnit Docs for examples about:

[ExpectedException( typeof( ArgumentException ) )]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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