NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo C# (CSharp) Method

WriteDescriptionTo() public method

Write the constraint description to a MessageWriter
public WriteDescriptionTo ( MessageWriter writer ) : void
writer MessageWriter The writer on which the description is displayed
return void
        public override void WriteDescriptionTo(MessageWriter writer)
        {
            writer.WritePredicate( "Path under or matching" );
            writer.WriteExpectedValue( expected );
        }