| File: CustomAssert.cs | Web Access |
| Project: src\tests\Aspire.Dashboard.Tests\Aspire.Dashboard.Tests.csproj (Aspire.Dashboard.Tests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Xunit; namespace Aspire.Dashboard.Tests; public static class CustomAssert { public static void AssertExceedsMinInterval(TimeSpan duration, TimeSpan minInterval) { // Timers are not precise, so we allow for a small margin of error. Assert.True(duration >= minInterval.Subtract(TimeSpan.FromMilliseconds(50)), $"Elapsed time {duration} should be greater than min interval {minInterval}."); } }