C# Class KellermanSoftware.CompareNetObjects.Reports.BaseDualFileReport

Abstract Base Duel File Report that has default Output
Inheritance: IDualFileReport
显示文件 Open project: GregFinzer/Compare-Net-Objects

Public Methods

Method Description
LaunchApplication ( string expectedFilePath, string actualFilePath ) : void

Launch application to compare two files

OutputFiles ( List differences, string expectedFilePath, string actualFilePath ) : void

Create two difference files and compare in WinMerge

Method Details

LaunchApplication() public abstract method

Launch application to compare two files
public abstract LaunchApplication ( string expectedFilePath, string actualFilePath ) : void
expectedFilePath string The path for the expected file results
actualFilePath string The path for the actual file results
return void

OutputFiles() public method

Create two difference files and compare in WinMerge
public OutputFiles ( List differences, string expectedFilePath, string actualFilePath ) : void
differences List A list of the differences
expectedFilePath string The path to write the expected results
actualFilePath string The path to write the actual results
return void