TestOutput
The TestOutput class holds a unit of output from
a test to a specific output stream
namespace NUnit.Framework.Interfaces
{
public class TestOutput
{
public string Text { get; set; }
public string Stream { get; set; }
public string TestName { get; set; }
public TestOutput(string text, string stream, string testName)
{
Text = text;
Stream = stream;
TestName = testName;
}
public override string ToString()
{
return Stream + ": " + Text;
}
public string ToXml()
{
if (TestName == null)
return string.Format("<test-output stream='{0}'>{1}</test-output>", new object[2] {
Stream,
Text
});
return string.Format("<test-output stream='{0}' testname='{1}'>{2}</test-output>", new object[3] {
Stream,
TestName,
Text
});
}
}
}