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