13 references to AuthenticationFeatures
Templates.Blazor.Tests (13)
BlazorTemplateTest.cs (6)
90
AuthenticationFeatures
authenticationFeatures =
AuthenticationFeatures
.None)
114
AuthenticationFeatures
authenticationFeatures =
AuthenticationFeatures
.None)
139
if (authenticationFeatures.HasFlag(
AuthenticationFeatures
.RegisterAndLogIn))
204
if (authenticationFeatures.HasFlag(
AuthenticationFeatures
.Passkeys))
BlazorWebTemplateTest.cs (7)
33
var
authenticationFeatures = authOption is "None"
34
?
AuthenticationFeatures
.None
35
:
AuthenticationFeatures
.RegisterAndLogIn;
62
var
authenticationFeatures =
AuthenticationFeatures
.RegisterAndLogIn |
AuthenticationFeatures
.Passkeys;
67
private async Task TestProjectCoreAsync(Project project, BrowserKind browserKind, BlazorTemplatePages pagesToExclude,
AuthenticationFeatures
authenticationFeatures)