AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Contains a summary of a code coverage report.
Line coverage measures how many statements your tests cover. A statement is a single instruction, not including comments, conditionals, etc.
Branch coverage determines if your tests cover every possible branch of a control
structure, such as an if or case statement.
Namespace: Amazon.CodeBuild.Model
Assembly: AWSSDK.CodeBuild.dll
Version: 3.x.y.z
public class CodeCoverageReportSummary
The CodeCoverageReportSummary type exposes the following members
| Name | Description | |
|---|---|---|
|
CodeCoverageReportSummary() |
| Name | Type | Description | |
|---|---|---|---|
|
BranchCoveragePercentage | System.Double |
Gets and sets the property BranchCoveragePercentage. The percentage of branches that are covered by your tests. |
|
BranchesCovered | System.Int32 |
Gets and sets the property BranchesCovered. The number of conditional branches that are covered by your tests. |
|
BranchesMissed | System.Int32 |
Gets and sets the property BranchesMissed. The number of conditional branches that are not covered by your tests. |
|
LineCoveragePercentage | System.Double |
Gets and sets the property LineCoveragePercentage. The percentage of lines that are covered by your tests. |
|
LinesCovered | System.Int32 |
Gets and sets the property LinesCovered. The number of lines that are covered by your tests. |
|
LinesMissed | System.Int32 |
Gets and sets the property LinesMissed. The number of lines that are not covered by your tests. |
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5