Method: OpenC3::ScriptResult#initialize

Defined in:
lib/openc3/script/suite.rb

#initializeScriptResult

Returns a new instance of ScriptResult.



538
539
540
541
542
543
544
545
546
547
548
# File 'lib/openc3/script/suite.rb', line 538

def initialize
  @suite = nil
  @suite = @@suite.clone if @@suite
  @group = nil
  @script = nil
  @output = nil
  @exceptions = nil
  @stopped = false
  @result = :SKIP
  @message = nil
end