mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-07 17:25:04 -05:00
fixed couple of issues in the perf tests (#693)
This commit is contained in:
@@ -73,11 +73,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Test.Common
|
||||
double elapsed = Percentile(iterationArray, 0.5);
|
||||
var currentColor = Console.ForegroundColor;
|
||||
Console.ForegroundColor = ConsoleColor.Green;
|
||||
Console.WriteLine(string.Format(CultureInfo.InvariantCulture, "Test Name: {0} Run time in milliSeconds: {1}", testName, TotalMilliSeconds));
|
||||
Console.WriteLine(string.Format(CultureInfo.InvariantCulture, "Test Name: {0} Run time in milliSeconds: {1}", testName, elapsed));
|
||||
Console.ForegroundColor = currentColor;
|
||||
string resultContent = Newtonsoft.Json.JsonConvert.SerializeObject(new TestResult
|
||||
{
|
||||
ElapsedTime = TotalMilliSeconds,
|
||||
ElapsedTime = elapsed,
|
||||
MetricValue = elapsed,
|
||||
PrimaryMetric = "ElapsedTimeMetric",
|
||||
Iterations = iterationArray,
|
||||
|
||||
Reference in New Issue
Block a user