Table of Contents

Class BinaryConstraint

Namespace
NUnit.Framework.Constraints
Assembly
nunit.framework.dll

BinaryConstraint is the abstract base of all constraints that combine two other constraints in some fashion.

public abstract class BinaryConstraint : Constraint, IConstraint, IResolveConstraint
Inheritance
BinaryConstraint
Implements
Derived
Inherited Members

Constructors

BinaryConstraint(IConstraint, IConstraint)

Construct a BinaryConstraint from two other constraints

protected BinaryConstraint(IConstraint left, IConstraint right)

Parameters

left IConstraint

The first constraint

right IConstraint

The second constraint

Fields

Left

The first constraint being combined

protected IConstraint Left

Field Value

IConstraint

Right

The second constraint being combined

protected IConstraint Right

Field Value

IConstraint