Nous pouvons vérifier les exceptions dans les tests unitaires de deux manières.
Considérons une méthode StringAppend qui doit être testée pour lever une exception.
using System; namespace DemoApplication { public class Program { static void Main(string[] args) { } public string StringAppend(string firstName, string lastName) { throw new Exception("Test Exception"); } } }
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"); } } }
Par exemple, nous utilisons Assert.ThrowsException pour appeler la méthode StringAppend et vérifier le type d'exception et le message. Le cas de test réussira donc.
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"); } } }
Par exemple, nous utilisons l'attribut ExpectedException et spécifions le type d'exception attendue. Étant donné que la méthode StringAppend renvoie le même type d'exception que celui mentionné dans [ExpectedException(typeof(Exception), "Test Exception")], le scénario de test réussira.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!