ExpectedException Assert

前端 未结 5 1214
死守一世寂寞
死守一世寂寞 2021-02-08 05:25

I need to write a unit test for the next function and I saw I can use [ExpectedException]

this is the function to be tested.

public static T FailIfEnumIs         


        
相关标签:
5条回答
  • 2021-02-08 05:50

    Assert the exception is throw with the correct exception message with :

    var ex = Assert.Throws<Exception>(() => _foo.DoSomething(a, b, c));
    Assert.That(ex.Message, Is.EqualTo("Your exception message"));
    
    0 讨论(0)
  • 2021-02-08 05:54

    You don't need an assertion if you're using ExpectedException attribute, in fact your code shouldn't be able to arrive at the assertion.

    look: http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.unittesting.expectedexceptionattribute.aspx

    If you want to be sure the exception is thrown you should put an Assert.Fail() after the operation that should throw the exception, in this case if the exception is not thrown, the test will fail.

    0 讨论(0)
  • 2021-02-08 05:59

    While ExpectedException cannot be used as-is to verify the exception's message, you could implement your own exception validation logic by inheriting from ExpectedExceptionBaseAttribute:

    By implementing your own expected exception verification. you can specify additional information and requirements that the built-in methods of the ExpectedExceptionAttribute class cannot handle, such as the following:

    • Verifying the state of the exception.
    • Expecting more than one type of exception.
    • Displaying a custom message when a wrong type of exception is thrown.
    • Controlling the outcome of a negative test.

    In your case, it could look something like this:

    public sealed class ExpectedExceptionMessageAttribute<T> : ExpectedExceptionBaseAttribute
    {
        readonly string _expectedMessage;
        public ExpectedExceptionMessageAttribute(string expectedMessage)
        {
            _expectedMessage = expectedMessage;
        }
    
        protected override void Verify(System.Exception exception)
        {
            // Handle assertion exceptions from assertion failures in the test method
            base.RethrowIfAssertException(exception);
    
            Assert.IsInstanceOfType(exception, typeof(T), "wrong exception type");
            Assert.AreEqual(_expectedMessage, exception.Message, "wrong exception message");
        }
    }
    

    HAving said that, I would still be inclined to use the direct try-catch approach though as it is more specific in where exactly the exception is expected to be thrown:

    public static void Throws<T>(Action action, Predicate<T> predicate = null) 
                        where T : Exception
    {
        try
        {
            action();
        }
        catch (T e)
        {
            if (predicate == null || predicate(e))
            {
                return;
            }
    
            Assert.Fail($"Exception of type {typeof(T)} thrown as expected, but the provided predicate rejected it: {e}");
        }
        catch (Exception e)
        {
            Assert.Fail($"Expected exception of type {typeof(T)} but a different exception was thrown: {e}");
        }
    
        Assert.Fail($"No exception thrown, expected {typeof(T)}");
    }
    
    0 讨论(0)
  • 2021-02-08 06:00

    ExpectedException just asserts that exception of specified type will be thrown by test method:

    [TestMethod] 
    [ExpectedException(typeof(ArgumentOutOfRangeException))]
    public void FailIfEnumIsNotDefined_Check_That_The_Value_Is_Not_Enum()
    {
        // PREPARE
        // EXECUTE
        // NO ASSERT!!
    }
    

    If you want to assert other parameters of exception, then you should use try..catch in your test method:

    [TestMethod]     
    public void FailIfEnumIsNotDefined_Check_That_The_Value_Is_Not_Enum()
    {
        // PREPARE
    
        try
        {
           // EXECUTE
           Assert.Fail()
        }
        catch(Exception exception)
        {        
            // ASSERT EXCEPTION DETAILS
        }
    }
    

    You can write your own method for asserting exception was thrown to avoid repeating same test code over and over again:

    public TException AssertCatch<TException>(Action action)
        where TException : Exception
    {
        try
        {
            action();
        }
        catch (TException exception)
        {
            return exception;
        }
    
        throw new AssertFailedException("Expected exception of type " + 
                                        typeof(TException) + " was not thrown");
    }
    

    Usage:

    var exception = AssertCatch<ArgumentOutOfRangeException>(() => /* EXECUTE */);
    Assert.AreEqual("foo", exception.Message);
    
    0 讨论(0)
  • 2021-02-08 06:00

    You must use ExpectedException differently:

    [TestMethod]
    [ExpectedException(typeof(ArgumentOutOfRangeException))]
    public void MyTestSomething() 
    

    and then code your test so that the expected exception gets thrown.

    0 讨论(0)
提交回复
热议问题