10 references to TimeoutAfter
Aspire.Hosting.Tests (10)
Health\ResourceHealthCheckServiceTests.cs (6)
49await app.StopAsync().TimeoutAfter(TestConstants.LongTimeoutTimeSpan); 243await app.StopAsync(abortTokenSource.Token).TimeoutAfter(TestConstants.LongTimeoutTimeSpan); 359await app.StopAsync().TimeoutAfter(TestConstants.LongTimeoutTimeSpan); 562await app.StopAsync().TimeoutAfter(TestConstants.LongTimeoutTimeSpan); 610await app.StopAsync().TimeoutAfter(TestConstants.LongTimeoutTimeSpan); 656await app.StopAsync().TimeoutAfter(TestConstants.LongTimeoutTimeSpan);
tests\Shared\AsyncTestHelpers.cs (4)
73return task.TimeoutAfter(TimeSpan.FromMilliseconds(milliseconds), filePath, lineNumber); 78return task.TimeoutAfter(timeout, filePath, lineNumber); 88return task.AsTask().TimeoutAfter(TimeSpan.FromMilliseconds(milliseconds), filePath, lineNumber); 93return task.AsTask().TimeoutAfter(timeout, filePath, lineNumber);