Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyredondo committed Nov 24, 2024
1 parent b3be62f commit c756412
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/TimeItSharp.Common/Results/ScenarioResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,16 @@ public ScenarioResult()
{
Scenario = null;
Error = string.Empty;
Data = new List<DataPoint>();
Durations = new List<double>();
Outliers = new List<double>();
Metrics = new Dictionary<string, double>();
MetricsData = new Dictionary<string, List<double>>();
AdditionalMetrics = new Dictionary<string, double>();
Data = [];
Durations = [];
Outliers = [];
Metrics = [];
MetricsData = [];
AdditionalMetrics = [];
Status = Status.Passed;
LastStandardOutput = string.Empty;
Ci99 = [];
Ci95 = [];
Ci90 = [];
}
}

0 comments on commit c756412

Please sign in to comment.