C# Class UnityEngine.NUnit.Framework.Constraints.BinaryConstraint

BinaryConstraint is the abstract base of all constraints that combine two other constraints in some fashion.
Inheritance: Constraint
Mostra file Open project: Unity-Technologies/nunitv2

Protected Properties

Property Type Description
left Constraint
right Constraint

Protected Methods

Method Description
BinaryConstraint ( Constraint left, Constraint right )

Construct a BinaryConstraint from two other constraints

Method Details

BinaryConstraint() protected method

Construct a BinaryConstraint from two other constraints
protected BinaryConstraint ( Constraint left, Constraint right )
left Constraint The first constraint
right Constraint The second constraint

Property Details

left protected_oe property

The first constraint being combined
protected Constraint left
return Constraint

right protected_oe property

The second constraint being combined
protected Constraint right
return Constraint