Sha256: 4b978d7120b95d2e160507fa7ac6f4841bbe9584dad8ac562cc0a917920d1b45
Contents?: true
Size: 1.39 KB
Versions: 7
Compression:
Stored size: 1.39 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element ConstantThroughputTimer # @param params [Hash] 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. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#constantthroughputtimer def constant_throughput_timer(params = {}, &) node = ConstantThroughputTimer.new(params) attach_node(node, &) end class ConstantThroughputTimer attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "ConstantThroughputTimer" : (params[:name] || "ConstantThroughputTimer") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <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 end
Version data entries
7 entries across 7 versions & 1 rubygems