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.
      6672 6673 6674 6675 6676 6677 6678  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 6672 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`.
      6672 6673 6674 6675 6676 6677 6678  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 6672 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.
      6672 6673 6674 6675 6676 6677 6678  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 6672 class TestReportSummary < Struct.new( :total, :status_counts, :duration_in_nano_seconds) SENSITIVE = [] include Aws::Structure end  |