Exemplo n.º 1
0
 public ScalarHelper(ServiceLocator serviceLocator, SettingsXml settings, SettingsXml.DefaultScope scope, Context context)
 {
     ServiceLocator = serviceLocator;
     Settings       = settings;
     Scope          = scope;
     Context        = context;
 }
Exemplo n.º 2
0
 public void Setup(QueryXml queryXml, SettingsXml settingsXml, SettingsXml.DefaultScope scope, IDictionary <string, ITestVariable> variables)
 {
     obj       = queryXml;
     Settings  = settingsXml ?? SettingsXml.Empty;
     Scope     = scope;
     Variables = variables;
     isSetup   = true;
 }
Exemplo n.º 3
0
 public DefaultXml(SettingsXml.DefaultScope applyTo) : this()
 {
     ApplyTo = applyTo;
 }
Exemplo n.º 4
0
 public string Execute(BaseItem xml, SettingsXml.DefaultScope scope)
 => Execute(xml.ConnectionString, xml.Settings.References, xml.Settings.GetDefault(scope), xml.Roles, xml.Settings.BasePath);
Exemplo n.º 5
0
 public ResultSetSystemHelper(ServiceLocator serviceLocator, SettingsXml.DefaultScope scope, IDictionary <string, ITestVariable> variables)
 => (ServiceLocator, Scope, Variables) = (serviceLocator, scope, variables);
Exemplo n.º 6
0
 public RestHelper(ServiceLocator serviceLocator, SettingsXml settings, SettingsXml.DefaultScope scope, IDictionary <string, ITestVariable> variables)
 => (ServiceLocator, Settings, Scope, Variables) = (serviceLocator, settings ?? SettingsXml.Empty, scope, variables ?? new Dictionary <string, ITestVariable>());