Exemple #1
0
 public override void WriteActualValueTo(NUnitCtr.MessageWriter writer)
 {
     child.WriteActualValueTo(writer);
 }
Exemple #2
0
 /// <summary>
 /// Write the actual value for a failing constraint test to a MessageWriter.
 /// </summary>
 /// <param name="writer">The writer on which the actual value is displayed</param>
 public override void WriteActualValueTo(MessageWriter writer)
 {
     baseConstraint.WriteActualValueTo(writer);
 }
 /// <summary>
 /// Write the generic 'Actual' line for a constraint
 /// </summary>
 /// <param name="constraint">The constraint for which the actual value is to be written</param>
 private void WriteActualLine(Constraint constraint)
 {
     Write(Pfx_Actual);
     constraint.WriteActualValueTo(this);
     WriteLine();
 }