ThrowsConstraint Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
ThrowsConstraint is used to test the exception thrown by a delegate by applying a constraint to it.
public class ThrowsConstraint : NUnit.Framework.Constraints.PrefixConstraint
type ThrowsConstraint = class
inherit PrefixConstraint
- Inheritance
Constructors
ThrowsConstraint(Constraint) |
Initializes a new instance of the ThrowsConstraint class, using a constraint to be applied to the exception. |
Fields
actual |
The actual value being tested against a constraint (Inherited from Constraint) |
baseConstraint |
The base constraint (Inherited from PrefixConstraint) |
Properties
ActualException |
Get the actual exception thrown - used by Assert.Throws. |
And |
Returns a ConstraintExpression by appending And to the current constraint. (Inherited from Constraint) |
DisplayName |
The display name of this Constraint for use by ToString(). The default value is the name of the constraint with trailing "Constraint" removed. Derived classes may set this to another name in their constructors. (Inherited from Constraint) |
Or |
Returns a ConstraintExpression by appending Or to the current constraint. (Inherited from Constraint) |
With |
Returns a ConstraintExpression by appending And to the current constraint. (Inherited from Constraint) |
Methods
After(Int32, Int32) | (Inherited from Constraint) |
After(Int32) | (Inherited from Constraint) |
GetStringRepresentation() | |
Matches(Object) |
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. |
Matches<T>(ActualValueDelegate<T>) | |
Matches<T>(T) | (Inherited from Constraint) |
ToString() |
Default override of ToString returns the constraint DisplayName followed by any arguments within angle brackets. (Inherited from Constraint) |
WriteActualValueTo(MessageWriter) |
Write the actual value for a failing constraint test to a MessageWriter. The default implementation simply writes the raw value of actual, leaving it to the writer to perform any formatting. |
WriteDescriptionTo(MessageWriter) |
Write the constraint description to a MessageWriter |
WriteMessageTo(MessageWriter) |
Write the failure message to the MessageWriter provided as an argument. The default implementation simply passes the constraint and the actual value to the writer, which then displays the constraint description and the value. Constraints that need to provide additional details, such as where the error occured can override this. (Inherited from Constraint) |
Explicit Interface Implementations
IResolveConstraint.Resolve() | (Inherited from Constraint) |