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