IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
OutputWriter is an abstract class used to write test results to a file in various formats. Specific OutputWriters are derived from this class. More...
Public Member Functions | |
void | WriteResultFile (ITestResult result, string outputPath, IDictionary runSettings, TestFilter filter) |
Writes a test result to a file More... | |
void | WriteTestFile (ITest test, string outputPath) |
Writes test info to a file More... | |
abstract void | WriteResultFile (ITestResult result, TextWriter writer, IDictionary runSettings, TestFilter filter) |
Abstract method that writes a test result to a TextWriter More... | |
abstract void | WriteTestFile (ITest test, TextWriter writer) |
Abstract method that writes test info to a TextWriter More... | |
OutputWriter is an abstract class used to write test results to a file in various formats. Specific OutputWriters are derived from this class.
|
inline |
Writes a test result to a file
result | The result to be written |
outputPath | Path to the file to which the result is written |
runSettings | A dictionary of settings used for this test run |
Referenced by NUnitLite.OutputManager.WriteResultFile().
|
inline |
Writes test info to a file
test | The test to be written |
outputPath | Path to the file to which the test info is written |
Referenced by NUnitLite.OutputManager.WriteTestFile().
|
pure virtual |
Abstract method that writes a test result to a TextWriter
result | The result to be written |
writer | A TextWriter to which the result is written |
runSettings | A dictionary of settings used for this test run |
Implemented in NUnitLite.NUnit3XmlOutputWriter, NUnitLite.NUnit2XmlOutputWriter, and NUnitLite.TestCaseOutputWriter.
|
pure virtual |
Abstract method that writes test info to a TextWriter
test | The test to be written |
writer | A TextWriter to which the test info is written |
Implemented in NUnitLite.NUnit2XmlOutputWriter, NUnitLite.NUnit3XmlOutputWriter, and NUnitLite.TestCaseOutputWriter.