ICodeCoverageSummary Interface
Note: This API is now obsolete.
Interface for a CodeCoverageSummary type of IBuildInformationNode.
To obtain an ICodeCoverageSummary, 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 ICodeCoverageSummary
[ObsoleteAttribute("This class has been deprecated. Please remove all references.",
false)]
public interface ICodeCoverageSummary
[ObsoleteAttribute(L"This class has been deprecated. Please remove all references.",
false)]
public interface class ICodeCoverageSummary
[<ObsoleteAttribute("This class has been deprecated. Please remove all references.",
false)>]
type ICodeCoverageSummary = interface end
public interface ICodeCoverageSummary
The ICodeCoverageSummary type exposes the following members.
Properties
Name | Description | |
---|---|---|
BlocksCovered | Gets or sets the number of blocks that are covered by this code coverage run. | |
BlocksNotCovered | Gets or sets the number of blocks that are not covered by this code coverage run. | |
Id | Gets the ID of the underlying IBuildInformationNode of this code coverage summary. | |
IsBuildCoverageProcessing | Gets or sets a flag that describes whether this code coverage run is currently processing. | |
LinesCovered | Gets or sets the number of lines that are covered by this code coverage run. | |
LinesNotCovered | Gets or sets the number of lines that are not covered by this code coverage run. | |
LinesPartiallyCovered | Gets or sets the number of lines that are partially covered by this code coverage run. | |
Name | Gets or sets the name of this code coverage run. | |
Node | Gets the underlying IBuildInformationNode of this code coverage run. | |
RunId | Gets or sets the ID of this code coverage run. | |
RunUser | Gets or sets the user who initiated this code coverage run. |
Top
Methods
Name | Description | |
---|---|---|
Save | Saves this code coverage summary to the server. |
Top