class RubyJmeter::IfController
Attributes
doc[RW]
Public Class Methods
new(params={})
click to toggle source
# File lib/ruby-jmeter/dsl/if_controller.rb, line 13 def initialize(params={}) testname = params.kind_of?(Array) ? 'IfController' : (params[:name] || 'IfController') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <IfController guiclass="IfControllerPanel" testclass="IfController" testname="#{testname}" enabled="true"> <stringProp name="IfController.condition"/> <boolProp name="IfController.evaluateAll">false</boolProp> <boolProp name="IfController.useExpression">true</boolProp> </IfController>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end