Assert.Catch Method

Definition

Overloads

Catch(Type, TestDelegate, String, Object[])
Catch(TestDelegate)
Catch(TestDelegate, String)
Catch(Type, TestDelegate)
Catch(TestDelegate, String, Object[])
Catch(Type, TestDelegate, String)
Catch<T>(TestDelegate, String)
Catch<T>(TestDelegate, String, Object[])
Catch<T>(TestDelegate)

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

Parameters

expectedExceptionType
Type
message
String
args
Object[]

Returns

Applies to

Catch(TestDelegate)

public static Exception Catch (NUnit.Framework.TestDelegate code);
static member Catch : NUnit.Framework.TestDelegate -> Exception

Parameters

Returns

Applies to

Catch(TestDelegate, String)

public static Exception Catch (NUnit.Framework.TestDelegate code, string message);
static member Catch : NUnit.Framework.TestDelegate * string -> Exception

Parameters

message
String

Returns

Applies to

Catch(Type, TestDelegate)

public static Exception Catch (Type expectedExceptionType, NUnit.Framework.TestDelegate code);
static member Catch : Type * NUnit.Framework.TestDelegate -> Exception

Parameters

expectedExceptionType
Type

Returns

Applies to

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

Parameters

message
String
args
Object[]

Returns

Applies to

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

Parameters

expectedExceptionType
Type
message
String

Returns

Applies to

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)

Type Parameters

T

Parameters

message
String

Returns

T

Applies to

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)

Type Parameters

T

Parameters

message
String
args
Object[]

Returns

T

Applies to

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)

Type Parameters

T

Parameters

Returns

T

Applies to