本文整理汇总了C#中NUnit.Framework.Constraints.MessageWriter.DisplayDifferences方法的典型用法代码示例。如果您正苦于以下问题:C# MessageWriter.DisplayDifferences方法的具体用法?C# MessageWriter.DisplayDifferences怎么用?C# MessageWriter.DisplayDifferences使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NUnit.Framework.Constraints.MessageWriter
的用法示例。
在下文中一共展示了MessageWriter.DisplayDifferences方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DisplayDifferences
private void DisplayDifferences(MessageWriter writer, object expected, object actual, int depth)
{
if (expected is string && actual is string)
DisplayStringDifferences(writer, (string)expected, (string)actual);
else if (expected is ICollection && actual is ICollection)
DisplayCollectionDifferences(writer, (ICollection)expected, (ICollection)actual, depth);
else if (expected is Stream && actual is Stream)
DisplayStreamDifferences(writer, (Stream)expected, (Stream)actual, depth);
else if ( tolerance != null )
writer.DisplayDifferences( expected, actual, tolerance );
else
writer.DisplayDifferences(expected, actual);
}
示例2: WriteMessageTo
/// <summary>
/// Write the failure message to the MessageWriter provided
/// as an argument. The default implementation simply passes
/// the constraint and the actual value to the writer, which
/// then displays the constraint description and the value.
///
/// Constraints that need to provide additional details,
/// such as where the error occured can override this.
/// </summary>
/// <param name="writer">The MessageWriter on which to display the message</param>
public virtual void WriteMessageTo(MessageWriter writer)
{
writer.DisplayDifferences(this);
}
示例3: WriteMessageTo
public override void WriteMessageTo(MessageWriter writer)
{
writer.WriteMessageLine("Difference at {0}", Path);
writer.DisplayDifferences(Expected, Actual);
}