Class: RubyJmeter::ConstantThroughputTimer

Inherits:
Object
  • Object
show all
Includes:
Helper
Defined in:
lib/ruby-jmeter/dsl/constant_throughput_timer.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 = {}) ⇒ ConstantThroughputTimer

Returns a new instance of ConstantThroughputTimer.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/ruby-jmeter/dsl/constant_throughput_timer.rb', line 13

def initialize(params={})
  testname = params.kind_of?(Array) ? 'ConstantThroughputTimer' : (params[:name] || 'ConstantThroughputTimer')
  @doc = Nokogiri::XML(<<-EOS.strip_heredoc)
<ConstantThroughputTimer guiclass="TestBeanGUI" testclass="ConstantThroughputTimer" testname="#{testname}" enabled="true">
  <intProp name="calcMode">0</intProp>
  <doubleProp>
<name>throughput</name>
<value>0.0</value>
<savedValue>0.0</savedValue>
  </doubleProp>
</ConstantThroughputTimer>)
  EOS
  update params
  update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath]
end

Instance Attribute Details

#docObject

Returns the value of attribute doc.



10
11
12
# File 'lib/ruby-jmeter/dsl/constant_throughput_timer.rb', line 10

def doc
  @doc
end