class RubyJmeter::RandomVariable

Attributes

doc[RW]

Public Class Methods

new(params={}) click to toggle source
# File lib/ruby-jmeter/dsl/random_variable.rb, line 13
    def initialize(params={})
      testname = params.kind_of?(Array) ? 'RandomVariable' : (params[:name] || 'RandomVariable')
      @doc = Nokogiri::XML(<<-EOS.strip_heredoc)
<RandomVariableConfig guiclass="TestBeanGUI" testclass="RandomVariableConfig" testname="#{testname}" enabled="true">
  <stringProp name="maximumValue"/>
  <stringProp name="minimumValue">1</stringProp>
  <stringProp name="outputFormat"/>
  <boolProp name="perThread">false</boolProp>
  <stringProp name="randomSeed"/>
  <stringProp name="variableName"/>
</RandomVariableConfig>)
      EOS
      update params
      update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath]
    end