1 implementation of IStopwatch
dotnet-aot (1)
parent\dotnet\Commands\Test\MTP\Terminal\SystemStopwatch.cs (1)
8internal sealed class SystemStopwatch : IStopwatch
8 references to IStopwatch
dotnet-aot (8)
parent\dotnet\Commands\Test\MTP\Terminal\SystemStopwatch.cs (1)
18public static IStopwatch StartNew()
parent\dotnet\Commands\Test\MTP\Terminal\TerminalTestReporter.cs (2)
36internal Func<IStopwatch> CreateStopwatch { get; set; } = SystemStopwatch.StartNew; 188IStopwatch sw = CreateStopwatch();
parent\dotnet\Commands\Test\MTP\Terminal\TestDetailState.cs (2)
6internal sealed class TestDetailState(long id, IStopwatch? stopwatch, string text) 14public IStopwatch? Stopwatch { get; } = stopwatch;
parent\dotnet\Commands\Test\MTP\Terminal\TestNodeResultsState.cs (1)
27public void AddRunningTestNode(int id, string instanceId, string uid, string name, IStopwatch stopwatch)
parent\dotnet\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;