ConstraintBuilder
ConstraintBuilder maintains the stacks that are used in
processing a ConstraintExpression. An OperatorStack
is used to hold operators that are waiting for their
operands to be reorganized. a ConstraintStack holds
input constraints as well as the results of each
operator applied.
namespace NUnit.Framework.Constraints
{
public class SubPathConstraint : PathConstraint
{
public override string Description => "Subpath of " + MsgUtils.FormatValue(expected);
public SubPathConstraint(string expected)
: base(expected)
{
}
protected override bool Matches(string actual)
{
return (actual != null) & IsSubPath(Canonicalize(expected), Canonicalize(actual));
}
}
}