Sha256: a30c1ba7428a8780e869649844c6f0e5229fce459f633a1d133d9b414face92a
Contents?: true
Size: 921 Bytes
Versions: 75
Compression:
Stored size: 921 Bytes
Contents
module RubyJmeter class DSL def random_variable(params={}, &block) node = RubyJmeter::RandomVariable.new(params) attach_node(node, &block) end end class RandomVariable attr_accessor :doc include Helper 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 end end
Version data entries
75 entries across 75 versions & 1 rubygems