IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
Common interface for objects that process and write out test results More...
Public Member Functions | |
void | CheckWritability (string outputPath) |
Checks if the output path is writable. If the output is not writable, this method should throw an exception. More... | |
void | WriteResultFile (XmlNode resultNode, string outputPath) |
Writes result to the specified output path. More... | |
void | WriteResultFile (XmlNode resultNode, TextWriter writer) |
Writes result to a TextWriter. More... | |
Common interface for objects that process and write out test results
void NUnit.Engine.Extensibility.IResultWriter.CheckWritability | ( | string | outputPath | ) |
Checks if the output path is writable. If the output is not writable, this method should throw an exception.
outputPath |
Implemented in NUnit.Engine.Services.XmlTransformResultWriter, NUnit.Engine.Addins.NUnit2XmlResultWriter, NUnit.Engine.Services.NUnit3XmlResultWriter, and NUnit.Engine.Services.TestCaseResultWriter.
void NUnit.Engine.Extensibility.IResultWriter.WriteResultFile | ( | XmlNode | resultNode, |
string | outputPath | ||
) |
Writes result to the specified output path.
resultNode | XmlNode for the result |
outputPath | Path to which it should be written |
Implemented in NUnit.Engine.Services.XmlTransformResultWriter, NUnit.Engine.Addins.NUnit2XmlResultWriter, NUnit.Engine.Services.NUnit3XmlResultWriter, and NUnit.Engine.Services.TestCaseResultWriter.
Referenced by NUnit.ConsoleRunner.ConsoleRunner.ExploreTests().
void NUnit.Engine.Extensibility.IResultWriter.WriteResultFile | ( | XmlNode | resultNode, |
TextWriter | writer | ||
) |
Writes result to a TextWriter.
resultNode | XmlNode for the result |
writer | TextWriter to which it should be written |
Implemented in NUnit.Engine.Services.XmlTransformResultWriter, NUnit.Engine.Addins.NUnit2XmlResultWriter, NUnit.Engine.Services.NUnit3XmlResultWriter, and NUnit.Engine.Services.TestCaseResultWriter.