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)
36internal Func<IStopwatch> CreateStopwatch { get; set; } = SystemStopwatch.StartNew; 188IStopwatch 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)
27public 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) 62public IStopwatch Stopwatch { get; } = stopwatch;