ApprovalTests.Utilities.StringReporting.DiffWith C# (CSharp) 메소드

DiffWith() 공개 정적인 메소드

public static DiffWith ( this expected, string actual ) : void
expected this
actual string
리턴 void
        public static void DiffWith(this string expected, string actual)
        {
            AssertEqual(expected, actual, Approvals.GetReporter());
        }