Sha256: 2e23bd4543b3b5ae06c87bb599a315eac322f3710c09d40222abd5fa93bd4755
Contents?: true
Size: 1.24 KB
Versions: 7
Compression:
Stored size: 1.24 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element RuntimeController # @param params [Hash] Parameters for the RuntimeController element (default: `{}`). # @yield block to attach to the RuntimeController element # @return [JmeterPerf::RuntimeController], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#runtimecontroller def runtime_controller(params = {}, &) node = RuntimeController.new(params) attach_node(node, &) end class RuntimeController attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "RuntimeController" : (params[:name] || "RuntimeController") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <RunTime guiclass="RunTimeGui" testclass="RunTime" testname="#{testname}" enabled="true"> <stringProp name="RunTime.seconds">1</stringProp> </RunTime> 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