Class: Google::Apis::FirebaserulesV1::TestSuite

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

Overview

TestSuite is a collection of TestCase instances that validate the logical correctness of a Ruleset. The TestSuite may be referenced in-line within a TestRuleset invocation or as part of a Release object as a pre-release check.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TestSuite

Returns a new instance of TestSuite.



736
737
738
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 736

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

Instance Attribute Details

#test_casesArray<Google::Apis::FirebaserulesV1::TestCase>

Collection of test cases associated with the TestSuite. Corresponds to the JSON property testCases



734
735
736
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 734

def test_cases
  @test_cases
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



741
742
743
# File 'generated/google/apis/firebaserules_v1/classes.rb', line 741

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