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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeCoverageReportSummary.BuilderbranchCoveragePercentage(Double branchCoveragePercentage)The percentage of branches that are covered by your tests.CodeCoverageReportSummary.BuilderbranchesCovered(Integer branchesCovered)The number of conditional branches that are covered by your tests.CodeCoverageReportSummary.BuilderbranchesMissed(Integer branchesMissed)The number of conditional branches that are not covered by your tests.CodeCoverageReportSummary.BuilderlineCoveragePercentage(Double lineCoveragePercentage)The percentage of lines that are covered by your tests.CodeCoverageReportSummary.BuilderlinesCovered(Integer linesCovered)The number of lines that are covered by your tests.CodeCoverageReportSummary.BuilderlinesMissed(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 Detail
-
lineCoveragePercentage
CodeCoverageReportSummary.Builder lineCoveragePercentage(Double 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
CodeCoverageReportSummary.Builder linesCovered(Integer 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
CodeCoverageReportSummary.Builder linesMissed(Integer 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
CodeCoverageReportSummary.Builder branchCoveragePercentage(Double 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
CodeCoverageReportSummary.Builder branchesCovered(Integer 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
CodeCoverageReportSummary.Builder branchesMissed(Integer 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.
-
-