Assert.Catch 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Catch(Type, TestDelegate, String, Object[])
public static Exception Catch (Type expectedExceptionType, NUnit.Framework.TestDelegate code, string message, params object[] args);
static member Catch : Type * NUnit.Framework.TestDelegate * string * obj[] -> Exception
매개 변수
- expectedExceptionType
- Type
- code
- TestDelegate
- message
- String
- args
- Object[]
반환
적용 대상
Catch(TestDelegate)
public static Exception Catch (NUnit.Framework.TestDelegate code);
static member Catch : NUnit.Framework.TestDelegate -> Exception
매개 변수
- code
- TestDelegate
반환
적용 대상
Catch(TestDelegate, String)
public static Exception Catch (NUnit.Framework.TestDelegate code, string message);
static member Catch : NUnit.Framework.TestDelegate * string -> Exception
매개 변수
- code
- TestDelegate
- message
- String
반환
적용 대상
Catch(Type, TestDelegate)
public static Exception Catch (Type expectedExceptionType, NUnit.Framework.TestDelegate code);
static member Catch : Type * NUnit.Framework.TestDelegate -> Exception
매개 변수
- expectedExceptionType
- Type
- code
- TestDelegate
반환
적용 대상
Catch(TestDelegate, String, Object[])
public static Exception Catch (NUnit.Framework.TestDelegate code, string message, params object[] args);
static member Catch : NUnit.Framework.TestDelegate * string * obj[] -> Exception
매개 변수
- code
- TestDelegate
- message
- String
- args
- Object[]
반환
적용 대상
Catch(Type, TestDelegate, String)
public static Exception Catch (Type expectedExceptionType, NUnit.Framework.TestDelegate code, string message);
static member Catch : Type * NUnit.Framework.TestDelegate * string -> Exception
매개 변수
- expectedExceptionType
- Type
- code
- TestDelegate
- message
- String
반환
적용 대상
Catch<T>(TestDelegate, String)
public static T Catch<T> (NUnit.Framework.TestDelegate code, string message) where T : Exception;
static member Catch : NUnit.Framework.TestDelegate * string -> 'T (requires 'T :> Exception)
형식 매개 변수
- T
매개 변수
- code
- TestDelegate
- message
- String
반환
T
적용 대상
Catch<T>(TestDelegate, String, Object[])
public static T Catch<T> (NUnit.Framework.TestDelegate code, string message, params object[] args) where T : Exception;
static member Catch : NUnit.Framework.TestDelegate * string * obj[] -> 'T (requires 'T :> Exception)
형식 매개 변수
- T
매개 변수
- code
- TestDelegate
- message
- String
- args
- Object[]
반환
T
적용 대상
Catch<T>(TestDelegate)
public static T Catch<T> (NUnit.Framework.TestDelegate code) where T : Exception;
static member Catch : NUnit.Framework.TestDelegate -> 'T (requires 'T :> Exception)
형식 매개 변수
- T
매개 변수
- code
- TestDelegate
반환
T