如何验证 C# 单元测试中引发的异常?
有两种方法可以在单元测试中验证异常。
- 使用 Assert.ThrowsException
- 使用 ExpectedException 特性。
示例
让我们考虑一个需要测试的引发异常的 StringAppend 方法。
using System; namespace DemoApplication { public class Program { static void Main(string[] args) { } public string StringAppend(string firstName, string lastName) { throw new Exception("Test Exception"); } } }
使用 Assert.ThrowsException
using System; using DemoApplication; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace DemoUnitTest { [TestClass] public class DemoUnitTest { [TestMethod] public void DemoMethod() { Program program = new Program(); var ex = Assert.ThrowsException<Exception>(() => program.StringAppend("Michael","Jackson")); Assert.AreSame(ex.Message, "Test Exception"); } } }
例如,我们使用 Assert.ThrowsException 调用 StringAppend 方法,并验证异常类型和消息。因此,测试用例将通过。
使用 ExpectedException 特性
using System; using DemoApplication; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace DemoUnitTest { [TestClass] public class DemoUnitTest { [TestMethod] [ExpectedException(typeof(Exception), "Test Exception")] public void DemoMethod() { Program program = new Program(); program.StringAppend("Michael", "Jackson"); } } }
例如,我们使用 ExpectedException 特性并指定预期异常的类型。由于 StringAppend 方法引发了 [ExpectedException(typeof(Exception), "测试异常")] 中提到的相同类型的异常,因此测试用例将通过。
广告