Class: Aws::CodeBuild::Types::TestReportSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::TestReportSummary
- Includes:
- Structure
- Defined in:
- 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.
6451 6452 6453 6454 6455 6456 6457 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6451 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`.
6451 6452 6453 6454 6455 6456 6457 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6451 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.
6451 6452 6453 6454 6455 6456 6457 |
# File 'lib/aws-sdk-codebuild/types.rb', line 6451 class TestReportSummary < Struct.new( :total, :status_counts, :duration_in_nano_seconds) SENSITIVE = [] include Aws::Structure end |