Class: RubyJmeter::Plugins::UltimateThreadGroup

Inherits:
Object
  • Object
show all
Includes:
Helper
Defined in:
lib/ruby-jmeter/plugins/ultimate_thread_group.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helper

#enabled, #enabled_disabled, #update, #update_at_xpath, #update_collection

Constructor Details

#initialize(params = {}) ⇒ UltimateThreadGroup

Returns a new instance of UltimateThreadGroup.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/ruby-jmeter/plugins/ultimate_thread_group.rb', line 6

def initialize(params={})
  @doc = Nokogiri::XML(<<-EOF.strip_heredoc)
    <kg.apc.jmeter.threads.UltimateThreadGroup guiclass="kg.apc.jmeter.threads.UltimateThreadGroupGui" testclass="kg.apc.jmeter.threads.UltimateThreadGroup" testname="jp@gc - Stepping Thread Group" enabled="true">
     <collectionProp name="ultimatethreadgroupdata">
     </collectionProp>
     <elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
       <boolProp name="LoopController.continue_forever">false</boolProp>
       <intProp name="LoopController.loops">-1</intProp>
     </elementProp>
     <stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
   </kg.apc.jmeter.threads.UltimateThreadGroup>
  EOF
  update params
end

Instance Attribute Details

#docObject

Returns the value of attribute doc.



4
5
6
# File 'lib/ruby-jmeter/plugins/ultimate_thread_group.rb', line 4

def doc
  @doc
end