本文介绍了ExpectedException消息参数不起作用!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下测试不会失败。我错过了什么吗?


The following test does not fail. Am I missing something?

        [TestMethod]
        [ExpectedException( typeof( System.ArgumentException), "This is the WRONG exception message.")]
        public void ExpectedExceptionDoesntDetectWrongMessage()
        {
            ThrowException();
        }

        private void ThrowException()
        {
            throw new System.ArgumentException("This is the exception message.");
        }


Rick Harrison(KnowWare,Inc。)


Rick Harrison (KnowWare, Inc.)

推荐答案


这篇关于ExpectedException消息参数不起作用!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 08:27