Sha256: eddc5af4abde4817d767a7a1333218160610d51014fc57c6e43f35628885a65e
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element ConstantThroughputTimer # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#constantthroughputtimer # @param [Hash] params Parameters for the ConstantThroughputTimer element (default: `{}`). # @yield block to attach to the ConstantThroughputTimer element # @return [JmeterPerf::ConstantThroughputTimer], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. def constant_throughput_timer(params = {}, &) node = JmeterPerf::ConstantThroughputTimer.new(params) attach_node(node, &) end end class ConstantThroughputTimer attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(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> <stringProp name="throughput">0.0</stringProp> </ConstantThroughputTimer> EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jmeter_perf-0.0.7 | lib/jmeter_perf/dsl/constant_throughput_timer.rb |