Interface TestReportSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestReportSummary.Builder,TestReportSummary>,SdkBuilder<TestReportSummary.Builder,TestReportSummary>,SdkPojo
- Enclosing class:
- TestReportSummary
public static interface TestReportSummary.Builder extends SdkPojo, CopyableBuilder<TestReportSummary.Builder,TestReportSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TestReportSummary.BuilderdurationInNanoSeconds(Long durationInNanoSeconds)The number of nanoseconds it took to run all of the test cases in this report.TestReportSummary.BuilderstatusCounts(Map<String,Integer> statusCounts)A map that contains the number of each type of status returned by the test results in thisTestReportSummary.TestReportSummary.Buildertotal(Integer total)The number of test cases in thisTestReportSummary.-
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
-
total
TestReportSummary.Builder total(Integer total)
The number of test cases in this
TestReportSummary. The total includes truncated test cases.- Parameters:
total- The number of test cases in thisTestReportSummary. The total includes truncated test cases.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusCounts
TestReportSummary.Builder statusCounts(Map<String,Integer> statusCounts)
A map that contains the number of each type of status returned by the test results in this
TestReportSummary.- Parameters:
statusCounts- A map that contains the number of each type of status returned by the test results in thisTestReportSummary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
durationInNanoSeconds
TestReportSummary.Builder durationInNanoSeconds(Long durationInNanoSeconds)
The number of nanoseconds it took to run all of the test cases in this report.
- Parameters:
durationInNanoSeconds- The number of nanoseconds it took to run all of the test cases in this report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-