C# Класс NUnitLite.OutputWriter

OutputWriter is an abstract class used to write test results to a file in various formats. Specific OutputWriters are derived from this class.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
WriteResultFile ( ITestResult result, TextWriter writer, object>.IDictionary runSettings, TestFilter filter ) : void

Abstract method that writes a test result to a TextWriter

WriteResultFile ( ITestResult result, string outputPath, object>.IDictionary runSettings, TestFilter filter ) : void

Writes a test result to a file

WriteTestFile ( ITest test, TextWriter writer ) : void

Abstract method that writes test info to a TextWriter

WriteTestFile ( ITest test, string outputPath ) : void

Writes test info to a file

Описание методов

WriteResultFile() публичный абстрактный Метод

Abstract method that writes a test result to a TextWriter
public abstract WriteResultFile ( ITestResult result, TextWriter writer, object>.IDictionary runSettings, TestFilter filter ) : void
result ITestResult The result to be written
writer System.IO.TextWriter A TextWriter to which the result is written
runSettings object>.IDictionary A dictionary of settings used for this test run
filter NUnit.Framework.Internal.TestFilter
Результат void

WriteResultFile() публичный Метод

Writes a test result to a file
public WriteResultFile ( ITestResult result, string outputPath, object>.IDictionary runSettings, TestFilter filter ) : void
result ITestResult The result to be written
outputPath string Path to the file to which the result is written
runSettings object>.IDictionary A dictionary of settings used for this test run
filter NUnit.Framework.Internal.TestFilter
Результат void

WriteTestFile() публичный абстрактный Метод

Abstract method that writes test info to a TextWriter
public abstract WriteTestFile ( ITest test, TextWriter writer ) : void
test ITest The test to be written
writer System.IO.TextWriter A TextWriter to which the test info is written
Результат void

WriteTestFile() публичный Метод

Writes test info to a file
public WriteTestFile ( ITest test, string outputPath ) : void
test ITest The test to be written
outputPath string Path to the file to which the test info is written
Результат void