Class BinaryConstraint
BinaryConstraint is the abstract base of all constraints that combine two other constraints in some fashion.
Inherited Members
Namespace: NUnit.Framework.Constraints
Assembly: nunit.framework.dll
Syntax
public abstract class BinaryConstraint : Constraint, IConstraint, IResolveConstraint
Constructors
View SourceBinaryConstraint(IConstraint, IConstraint)
Construct a BinaryConstraint from two other constraints
Declaration
protected BinaryConstraint(IConstraint left, IConstraint right)
Parameters
Type | Name | Description |
---|---|---|
IConstraint | left | The first constraint |
IConstraint | right | The second constraint |
Fields
View SourceLeft
The first constraint being combined
Declaration
protected IConstraint Left
Field Value
Type | Description |
---|---|
IConstraint |
Right
The second constraint being combined
Declaration
protected IConstraint Right
Field Value
Type | Description |
---|---|
IConstraint |