예제 #1
0
파일: ScalarHelper.cs 프로젝트: ywscr/NBi
 public ScalarHelper(ServiceLocator serviceLocator, SettingsXml settings, SettingsXml.DefaultScope scope, Context context)
 {
     ServiceLocator = serviceLocator;
     Settings       = settings;
     Scope          = scope;
     Context        = context;
 }
예제 #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;
 }
예제 #3
0
파일: DefaultXml.cs 프로젝트: zyh329/nbi
 public DefaultXml(SettingsXml.DefaultScope applyTo) : this()
 {
     ApplyTo = applyTo;
 }
예제 #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);
예제 #5
0
 public ResultSetSystemHelper(ServiceLocator serviceLocator, SettingsXml.DefaultScope scope, IDictionary <string, ITestVariable> variables)
 => (ServiceLocator, Scope, Variables) = (serviceLocator, scope, variables);
예제 #6
0
파일: RestHelper.cs 프로젝트: ywscr/NBi
 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>());