public TestAlert(AlertState alertState = AlertState.Active)
     : base(alertState)
 {
     this.Value          = 22.4;
     this.Query1         = "<query1>";
     this.Query2         = "<query2>";
     this.Analysis1      = "analysis1";
     this.Analysis2      = "analysis2";
     this.Analysis3      = new DateTime(2012, 11, 12, 17, 22, 37);
     this.NoPresentation = "no show";
     this.OnlyPredicate  = "only predicate";
 }
 public TestAlertNoSummaryChart(AlertState alertState = AlertState.Active)
     : base(alertState)
 {
     this.Value = 22.4;
 }
 public TestAlertNoSummaryProperty(AlertState alertState = AlertState.Active)
     : base(alertState)
 {
     this.CpuChartQuery = "<the query>";
 }
 public TestAlertNoQueries(AlertState alertState = AlertState.Active)
     : base(alertState)
 {
     this.Value = 22.4;
 }
 public TestAlertNoSummary(AlertState alertState = AlertState.Active)
     : base("Test title", default(ResourceIdentifier), alertState)
 {
     this.Value       = 22.4;
     this.MachineName = "strongOne";
 }
 public PresentationTestAlert(string title = "AlertTitle", ResourceIdentifier resourceIdentifier = default(ResourceIdentifier), AlertState state = AlertState.Active)
     : base(title, resourceIdentifier, state)
 {
 }