1 implementation of Elapsed
dotnet (1)
Commands\Test\MTP\Terminal\SystemStopwatch.cs (1)
12public TimeSpan Elapsed => _stopwatch.Elapsed;
7 references to Elapsed
dotnet (7)
Commands\Test\MTP\Terminal\AnsiTerminalTestProgressFrame.cs (4)
23string durationString = HumanReadableDurationFormatter.Render(progress.Stopwatch.Elapsed); 135string durationString = HumanReadableDurationFormatter.Render(detail.Stopwatch?.Elapsed); 226string durationString = HumanReadableDurationFormatter.Render(progressItem.Stopwatch.Elapsed); 261string durationString = HumanReadableDurationFormatter.Render(detailItem.Stopwatch?.Elapsed);
Commands\Test\MTP\Terminal\SimpleTerminalBase.cs (1)
68string durationString = HumanReadableDurationFormatter.Render(p.Stopwatch.Elapsed);
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
809AppendLongDuration(terminal, assemblyRun.Stopwatch.Elapsed);
Commands\Test\MTP\Terminal\TestNodeResultsState.cs (1)
26.OrderByDescending(d => d.Stopwatch?.Elapsed ?? TimeSpan.Zero)