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)
31
var
authenticationFeatures = authOption is "None"
32
?
AuthenticationFeatures
.None
33
:
AuthenticationFeatures
.RegisterAndLogIn;
60
var
authenticationFeatures =
AuthenticationFeatures
.RegisterAndLogIn |
AuthenticationFeatures
.Passkeys;
65
private async Task TestProjectCoreAsync(Project project, BrowserKind browserKind, BlazorTemplatePages pagesToExclude,
AuthenticationFeatures
authenticationFeatures)