ApprovalTests.Reporters.GenericDiffReporter.Report C# (CSharp) Method

Report() public method

public Report ( string approved, string received ) : void
approved string
received string
return void
        public virtual void Report(string approved, string received)
        {
            if (!File.Exists(GetDiffProgram()))
            {
                throw new Exception(diffProgramNotFoundMessage);
            }
            EnsureFileExists(approved);
            LaunchAsync(GetLaunchArguments(approved, received));
        }