/// <summary>
 /// Initializes a new instance of the <see cref="SQLDeployTest" /> class.
 /// </summary>
 /// <param name="isDefault">The is default.</param>
 /// <param name="name">The test title.</param>
 /// <param name="settings">The settings.</param>
 /// <param name="order">The order in which test will appear in the list of tests.</param>
 /// <param name="security">The security.</param>
 public SQLDeployTest(bool isDefault, string name, SqlDeploySettings settings, int order = 0, SqlDeploySecurity security = null)
 {
     this.sqlDeploy = new SqlDeployDbHelper(settings, security);
     this.isDefault = isDefault;
     this.name = name;
     this.Order = order;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SQLDeployTest" /> class.
 /// </summary>
 /// <param name="settings">The settings.</param>
 /// <param name="order">The order in which test will appear in the list of tests.</param>
 /// <param name="security">The security.</param>
 public SQLDeployTest(SqlDeploySettings settings, int order = 0, SqlDeploySecurity security = null)
 {
     this.sqlDeploy = new SqlDeployDbHelper(settings, security);
     this.Order = order;
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SQLDeployTest" /> class.
 /// </summary>
 /// <param name="isDefault">The is default.</param>
 /// <param name="name">The test title.</param>
 /// <param name="description">The test description.</param>
 /// <param name="settings">The settings.</param>
 /// <param name="order">The order in which test will appear in the list of tests.</param>
 /// <param name="security">The security.</param>
 public SQLDeployTest(bool isDefault, string name, string description, SqlDeploySettings settings, int order = 0, SqlDeploySecurity security = null)
 {
     this.sqlDeploy   = new SqlDeployDbHelper(settings, security);
     this.isDefault   = isDefault;
     this.name        = name;
     this.description = description;
     this.Order       = order;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SqlDeployDbHelper" /> class.
 /// </summary>
 /// <param name="settings">The settings.</param>
 /// <param name="security">The security.</param>
 public SqlDeployDbHelper(SqlDeploySettings settings, SqlDeploySecurity security = null)
 {
     this._security = security;
     this._settings = settings;
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SQLDeployTest" /> class.
 /// </summary>
 /// <param name="isDefault">The is default.</param>
 /// <param name="settings">The settings.</param>
 /// <param name="order">The order in which test will appear in the list of tests.</param>
 /// <param name="security">The security.</param>
 public SQLDeployTest(bool isDefault, SqlDeploySettings settings, int order = 0, SqlDeploySecurity security = null)
 {
     this.sqlDeploy = new SqlDeployDbHelper(settings, security);
     this.isDefault = isDefault;
     this.Order     = order;
 }