Class: Aws::CodeBuild::Types::TestReportSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::TestReportSummary
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Information about a test report.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_in_nano_seconds ⇒ Integer
The number of nanoseconds it took to run all of the test cases in this report.
-
#status_counts ⇒ Hash<String,Integer>
A map that contains the number of each type of status returned by the test results in this
TestReportSummary
. -
#total ⇒ Integer
The number of test cases in this
TestReportSummary
.
Instance Attribute Details
#duration_in_nano_seconds ⇒ Integer
The number of nanoseconds it took to run all of the test cases in this report.
6707 6708 6709 6710 6711 6712 6713 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6707 class TestReportSummary < Struct.new( :total, :status_counts, :duration_in_nano_seconds) SENSITIVE = [] include Aws::Structure end |
#status_counts ⇒ Hash<String,Integer>
A map that contains the number of each type of status returned by
the test results in this TestReportSummary
.
6707 6708 6709 6710 6711 6712 6713 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6707 class TestReportSummary < Struct.new( :total, :status_counts, :duration_in_nano_seconds) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Integer
The number of test cases in this TestReportSummary
. The total
includes truncated test cases.
6707 6708 6709 6710 6711 6712 6713 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 6707 class TestReportSummary < Struct.new( :total, :status_counts, :duration_in_nano_seconds) SENSITIVE = [] include Aws::Structure end |