Class: Google::Apis::ToolresultsV1beta3::TestCaseReference
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::TestCaseReference
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb
Overview
A reference to a test case. Test case references are canonically ordered lexicographically by these three factors: * First, by test_suite_name. * Second, by class_name. * Third, by name.
Instance Attribute Summary collapse
- 
  
    
      #class_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the class. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the test case. 
- 
  
    
      #test_suite_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the test suite to which this test case belongs. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TestCaseReference 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TestCaseReference. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestCaseReference
Returns a new instance of TestCaseReference
| 2221 2222 2223 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2221 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#class_name ⇒ String
The name of the class.
Corresponds to the JSON property className
| 2208 2209 2210 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2208 def class_name @class_name end | 
#name ⇒ String
The name of the test case.
Required.
Corresponds to the JSON property name
| 2214 2215 2216 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2214 def name @name end | 
#test_suite_name ⇒ String
The name of the test suite to which this test case belongs.
Corresponds to the JSON property testSuiteName
| 2219 2220 2221 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2219 def test_suite_name @test_suite_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2226 2227 2228 2229 2230 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 2226 def update!(**args) @class_name = args[:class_name] if args.key?(:class_name) @name = args[:name] if args.key?(:name) @test_suite_name = args[:test_suite_name] if args.key?(:test_suite_name) end |