Ejemplo n.º 1
0
 public static string GetAssertMessage(string expected, string actual, bool escapeQuotes = false, string expectedValueSourcePath = null, int expectedValueSourceLine = 0)
 {
     return(GetAssertMessage(DiffUtil.Lines(expected), DiffUtil.Lines(actual), escapeQuotes, expectedValueSourcePath, expectedValueSourceLine));
 }
Ejemplo n.º 2
0
 public static string GetAssertMessage(string expected, string actual, bool escapeQuotes = false)
 {
     return(GetAssertMessage(DiffUtil.Lines(expected), DiffUtil.Lines(actual), escapeQuotes));
 }