Class TestResult
Test result info.
Inheritance
System.Object
TestResult
Namespace: Microsoft.GNS.Roster.Web
Assembly: Microsoft.GNS.Roster.Web.dll
Syntax
public class TestResult : object
Properties
View SourceLogData
Gets the log data.
Declaration
public List<string> LogData { get; }
Property Value
Type | Description |
---|---|
List<System.String> |
Result
Gets or sets the test result.
Declaration
public string Result { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RunTime
Gets or sets the test run time.
Declaration
public DateTimeOffset RunTime { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
TestName
Gets or sets the test name.
Declaration
public string TestName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
View SourceLog(String)
Adds a log message.
Declaration
public void Log(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | A message to add. |