ITestSummary Interface
Note: This API is now obsolete.
Interface for TestSummary type of IBuildInformationNode. To obtain an ITestSummary, use the InformationNodeConverters class.
Namespace: Microsoft.TeamFoundation.Build.Client
Assembly: Microsoft.TeamFoundation.Build.Client (in Microsoft.TeamFoundation.Build.Client.dll)
Syntax
'Declaration
<ObsoleteAttribute("This class has been deprecated. Please remove all references.", _
False)> _
Public Interface ITestSummary
[ObsoleteAttribute("This class has been deprecated. Please remove all references.",
false)]
public interface ITestSummary
[ObsoleteAttribute(L"This class has been deprecated. Please remove all references.",
false)]
public interface class ITestSummary
[<ObsoleteAttribute("This class has been deprecated. Please remove all references.",
false)>]
type ITestSummary = interface end
public interface ITestSummary
The ITestSummary type exposes the following members.
Properties
Name | Description | |
---|---|---|
Id | Gets the ID of the underlying IBuildInformationNode of this test summary. | |
Name | Gets or sets the name of this test run. | |
Node | Gets the underlying IBuildInformationNode. | |
RunId | Gets or sets the ID of this test run. | |
RunPassed | Gets or sets a flag that describes the overall status of this test run. | |
RunUser | Gets or sets the user who initiated this test run. | |
TestsFailed | Gets or sets the number of tests that failed during this test run. | |
TestsInconclusive | Gets the number of tests that were not marked as passed or failed during the run. | |
TestsPassed | Gets or sets the number of tests that passed during the run. | |
TestsTotal | Gets or sets the total number of tests. |
Top
Methods
Name | Description | |
---|---|---|
Save | Saves the test summary to the server. |
Top