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