File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/bunit/Extensions/WaitForHelpers Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ namespace Bunit.Extensions.WaitForHelpers;
33/// <summary>
44/// Represents an async wait helper, that will wait for a specified time for an assertion to pass.
55/// </summary>
6- public class WaitForAssertionHelper < TComponent > : WaitForHelper < object ? , TComponent >
6+ internal class WaitForAssertionHelper < TComponent > : WaitForHelper < object ? , TComponent >
77 where TComponent : IComponent
88{
99 internal const string TimeoutMessage = "The assertion did not pass within the timeout period." ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ namespace Bunit.Extensions.WaitForHelpers;
88/// Represents a helper class that can wait for a render notifications from a <see cref="IRenderedComponent{TComponent}"/> type,
99/// until a specific timeout is reached.
1010/// </summary>
11- public abstract class WaitForHelper < T , TComponent > : IDisposable
11+ internal abstract class WaitForHelper < T , TComponent > : IDisposable
1212 where TComponent : IComponent
1313{
1414 private readonly TaskCompletionSource < T > checkPassedCompletionSource ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ namespace Bunit.Extensions.WaitForHelpers;
33/// <summary>
44/// Represents an async wait helper, that will wait for a specified time for a state predicate to pass.
55/// </summary>
6- public class WaitForStateHelper < TComponent > : WaitForHelper < object ? , TComponent >
6+ internal class WaitForStateHelper < TComponent > : WaitForHelper < object ? , TComponent >
77 where TComponent : IComponent
88{
99 internal const string TimeoutBeforePassMessage = "The state predicate did not pass before the timeout period passed." ;
You can’t perform that action at this time.
0 commit comments