class RubyJmeter::ConstantTimer
Attributes
doc[RW]
Public Class Methods
new(params={})
click to toggle source
# File lib/ruby-jmeter/dsl/constant_timer.rb, line 13 def initialize(params={}) testname = params.kind_of?(Array) ? 'ConstantTimer' : (params[:name] || 'ConstantTimer') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="#{testname}" enabled="true"> <stringProp name="ConstantTimer.delay">300</stringProp> </ConstantTimer>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end