Esempio n. 1
0
        private void DisplayResults()
        {
            TimeSpan averageTime = testRunner.CalculateAverage();

            StringOutput stringOutput = new StringOutput
            {
                Label        = "Average:",
                MarginTop    = 1,
                MarginBottom = 1,
                Value        = averageTime.TotalMilliseconds + " ms"
            };

            stringOutput.Display();
        }