Class TestResult
Test result info.
Inherited Members
Namespace: Microsoft.GNS.Roster.Web
Assembly: Microsoft.GNS.Roster.Web.dll
Syntax
public class TestResult
Properties
View SourceLogData
Gets the log data.
Declaration
public List<string> LogData { get; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Result
Gets or sets the test result.
Declaration
public string Result { get; set; }
Property Value
| Type | Description |
|---|---|
| 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 |
|---|---|
| string |
Methods
View SourceLog(string)
Adds a log message.
Declaration
public void Log(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | A message to add. |