class Google::Apis::FirebaserulesV1::TestRulesetResponse

The response for FirebaseRulesService.TestRuleset.

Attributes

issues[RW]

Syntactic and semantic `Source` issues of varying severity. Issues of `ERROR` severity will prevent tests from executing. Corresponds to the JSON property `issues` @return [Array<Google::Apis::FirebaserulesV1::Issue>]

test_results[RW]

The set of test results given the test cases in the `TestSuite`. The results will appear in the same order as the test cases appear in the `TestSuite`. Corresponds to the JSON property `testResults` @return [Array<Google::Apis::FirebaserulesV1::TestResult>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebaserules_v1/classes.rb, line 699
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebaserules_v1/classes.rb, line 704
def update!(**args)
  @issues = args[:issues] if args.key?(:issues)
  @test_results = args[:test_results] if args.key?(:test_results)
end