File: TestAuthenticationStateProvider.cs
Web Access
Project: src\src\Components\Authorization\test\Microsoft.AspNetCore.Components.Authorization.Tests.csproj (Microsoft.AspNetCore.Components.Authorization.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Components.Authorization;
 
public class TestAuthenticationStateProvider : AuthenticationStateProvider
{
    public Task<AuthenticationState> CurrentAuthStateTask { get; set; }
 
    public override Task<AuthenticationState> GetAuthenticationStateAsync()
    {
        return CurrentAuthStateTask;
    }
 
    internal void TriggerAuthenticationStateChanged(Task<AuthenticationState> authState)
    {
        NotifyAuthenticationStateChanged(authState);
    }
}