Class: Google::Apis::ToolresultsV1beta3::Specification

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb

Overview

The details about how to run the execution.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Specification

Returns a new instance of Specification.



2680
2681
2682
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2680

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#android_testGoogle::Apis::ToolresultsV1beta3::AndroidTest

An Android mobile test specification. Corresponds to the JSON property androidTest



2673
2674
2675
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2673

def android_test
  @android_test
end

#ios_testGoogle::Apis::ToolresultsV1beta3::IosTest

A iOS mobile test specification Corresponds to the JSON property iosTest



2678
2679
2680
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2678

def ios_test
  @ios_test
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2685
2686
2687
2688
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2685

def update!(**args)
  @android_test = args[:android_test] if args.key?(:android_test)
  @ios_test = args[:ios_test] if args.key?(:ios_test)
end