Class ThrowsConstraint
ThrowsConstraint is used to test the exception thrown by
a delegate by applying a constraint to it.
Inheritance
ThrowsConstraint
Assembly: nunit.framework.dll
Syntax
public class ThrowsConstraint : PrefixConstraint, IConstraint, IResolveConstraint
Constructors
View Source
ThrowsConstraint(IConstraint)
Initializes a new instance of the ThrowsConstraint class,
using a constraint to be applied to the exception.
Declaration
public ThrowsConstraint(IConstraint baseConstraint)
Parameters
Type |
Name |
Description |
IConstraint |
baseConstraint |
A constraint to apply to the caught exception.
|
Properties
View Source
ActualException
Get the actual exception thrown - used by Assert.Throws.
Declaration
public Exception? ActualException { get; }
Property Value
View Source
Description
Gets text describing a constraint
Declaration
public override string Description { get; }
Property Value
Overrides
Methods
View Source
ApplyToAsync<TActual>(Func<Task<TActual>>)
Applies the constraint to a delegate that returns the task.
The default implementation simply evaluates the delegate and awaits the task
but derived classes may override it to provide for delayed processing.
Declaration
public override Task<ConstraintResult> ApplyToAsync<TActual>(Func<Task<TActual>> actual)
Parameters
Type |
Name |
Description |
Func<Task<TActual>> |
actual |
|
Returns
Type Parameters
Overrides
View Source
ApplyTo<TActual>(ActualValueDelegate<TActual>)
Converts an ActualValueDelegate to a TestDelegate
before calling the primary overload.
Declaration
public override ConstraintResult ApplyTo<TActual>(ActualValueDelegate<TActual> del)
Parameters
Returns
Type Parameters
Overrides
View Source
ApplyTo<TActual>(TActual)
Executes the code of the delegate and captures any exception.
If a non-null base constraint was provided, it applies that
constraint to the exception.
Declaration
public override ConstraintResult ApplyTo<TActual>(TActual actual)
Parameters
Type |
Name |
Description |
TActual |
actual |
A delegate representing the code to be tested
|
Returns
Type |
Description |
ConstraintResult |
True if an exception is thrown and the constraint succeeds, otherwise false
|
Type Parameters
Overrides
Implements