Konstruktor ExpectedExceptionAttribute — (Type, String)
Inicjuje nowe wystąpienie ExpectedExceptionAttribute klasy i typ oczekiwany wyjątek i komunikat, który opisuje wyjątek.
Przestrzeń nazw: Microsoft.VisualStudio.TestTools.UnitTesting
Zestaw: Microsoft.VisualStudio.QualityTools.UnitTestFramework (w Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Składnia
'Deklaracja
Public Sub New ( _
exceptionType As Type, _
noExceptionMessage As String _
)
public ExpectedExceptionAttribute(
Type exceptionType,
string noExceptionMessage
)
public:
ExpectedExceptionAttribute(
Type^ exceptionType,
String^ noExceptionMessage
)
new :
exceptionType:Type *
noExceptionMessage:string -> ExpectedExceptionAttribute
public function ExpectedExceptionAttribute(
exceptionType : Type,
noExceptionMessage : String
)
Parametry
- exceptionType
Typ: System.Type
Oczekiwanego typu wyjątku, zostać wygenerowany przy użyciu metody.
- noExceptionMessage
Typ: System.String
Uwagi
Jeśli exceptionType lub message jest nullodwołanie o wartości null (Nothing w języku Visual Basic), diagnostyczne wiadomość zostanie wysłana do obiektu nasłuchującego śledzenia.
Przykłady
Poniższa klasa zawiera metoda badania:
using System;
namespace MyCSNamespace
{
public class DivisionClass
{
public int Divide(int numerator, int denominator)
{
return numerator / denominator;
}
}
}
Public Class DivisionClass
Public Function Divide(ByVal numerator As Integer, ByVal denominator As Integer) As Integer
Return numerator \ denominator
End Function
End Class
Następującej metody badawczej badania metody Divide obiektu DivisionClass.Badań istnienie DivideByZeroException.
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MyCSNamespace;
namespace MyCSTestProject
{
[TestClass()]
public class DivisionClassTest
{
[TestMethod()]
[ExpectedException(typeof(System.DivideByZeroException), "MyMessage")]
public void DivideTest()
{
DivisionClass target = new DivisionClass();
int numerator = 4;
int denominator = 0;
int actual;
actual = target.Divide(numerator, denominator);
}
}
}
Imports Microsoft.VisualStudio.TestTools.UnitTesting
Imports MyVBProject
<TestClass()> _
Public Class DivisionClassTest
<TestMethod()> _
<ExpectedException(GetType(System.DivideByZeroException), "MyMessage")> _
Public Sub DivideTest()
Dim target As DivisionClass = New DivisionClass
Dim numerator As Integer = 4
Dim denominator As Integer = 0
Dim actual As Integer
actual = target.Divide(numerator, denominator)
End Sub
End Class
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Przy użyciu bibliotek z częściowo zaufanego kodu..
Zobacz też
Informacje
ExpectedExceptionAttribute Klasa
Przeciążenie ExpectedExceptionAttribute
Przestrzeń nazw Microsoft.VisualStudio.TestTools.UnitTesting