Interface CodeCoverageReportSummary.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<CodeCoverageReportSummary.Builder,
,CodeCoverageReportSummary> SdkBuilder<CodeCoverageReportSummary.Builder,
,CodeCoverageReportSummary> SdkPojo
- Enclosing class:
CodeCoverageReportSummary
public static interface CodeCoverageReportSummary.Builder
extends SdkPojo, CopyableBuilder<CodeCoverageReportSummary.Builder,CodeCoverageReportSummary>
-
Method Summary
Modifier and TypeMethodDescriptionbranchCoveragePercentage
(Double branchCoveragePercentage) The percentage of branches that are covered by your tests.branchesCovered
(Integer branchesCovered) The number of conditional branches that are covered by your tests.branchesMissed
(Integer branchesMissed) The number of conditional branches that are not covered by your tests.lineCoveragePercentage
(Double lineCoveragePercentage) The percentage of lines that are covered by your tests.linesCovered
(Integer linesCovered) The number of lines that are covered by your tests.linesMissed
(Integer linesMissed) The number of lines that are not covered by your tests.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
lineCoveragePercentage
The percentage of lines that are covered by your tests.
- Parameters:
lineCoveragePercentage
- The percentage of lines that are covered by your tests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
linesCovered
The number of lines that are covered by your tests.
- Parameters:
linesCovered
- The number of lines that are covered by your tests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
linesMissed
The number of lines that are not covered by your tests.
- Parameters:
linesMissed
- The number of lines that are not covered by your tests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
branchCoveragePercentage
The percentage of branches that are covered by your tests.
- Parameters:
branchCoveragePercentage
- The percentage of branches that are covered by your tests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
branchesCovered
The number of conditional branches that are covered by your tests.
- Parameters:
branchesCovered
- The number of conditional branches that are covered by your tests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
branchesMissed
The number of conditional branches that are not covered by your tests.
- Parameters:
branchesMissed
- The number of conditional branches that are not covered by your tests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-