1 implementation of IStopwatch
dotnet (1)
Commands\Test\MTP\Terminal\SystemStopwatch.cs (1)
8internal sealed class SystemStopwatch : IStopwatch
8 references to IStopwatch
dotnet (8)
Commands\Test\MTP\Terminal\SystemStopwatch.cs (1)
18public static IStopwatch StartNew()
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (2)
29internal Func<IStopwatch> CreateStopwatch { get; set; } = SystemStopwatch.StartNew; 153IStopwatch sw = CreateStopwatch();
Commands\Test\MTP\Terminal\TestDetailState.cs (2)
6internal sealed class TestDetailState(long id, IStopwatch? stopwatch, string text) 14public IStopwatch? Stopwatch { get; } = stopwatch;
Commands\Test\MTP\Terminal\TestNodeResultsState.cs (1)
19public void AddRunningTestNode(int id, string instanceId, string uid, string name, IStopwatch stopwatch)
Commands\Test\MTP\Terminal\TestProgressState.cs (2)
9internal sealed class TestProgressState(long id, string assembly, string? targetFramework, string? architecture, IStopwatch stopwatch, bool isDiscovery) 25public IStopwatch Stopwatch { get; } = stopwatch;