예제 #1
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="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;
 }
예제 #2
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="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;
 }
예제 #3
0
 /// <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;
 }
예제 #4
0
 /// <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;
 }