Class: Qaxqa::AllSuite

Inherits:
Object
  • Object
show all
Defined in:
lib/qaxqa/all_suite.rb

Overview

Module class to set XML parsed attributes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = nil) ⇒ AllSuite

Returns a new instance of AllSuite.



12
13
14
15
16
# File 'lib/qaxqa/all_suite.rb', line 12

def initialize(path = nil)
	@testsuites = []
	@doc = nil
	fetch! path unless path.nil?
end

Instance Attribute Details

#docObject

Returns the value of attribute doc.



10
11
12
# File 'lib/qaxqa/all_suite.rb', line 10

def doc
  @doc
end

#testsuitesObject

Returns the value of attribute testsuites.



10
11
12
# File 'lib/qaxqa/all_suite.rb', line 10

def testsuites
  @testsuites
end