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