aspnetcore/test/Identity.FunctionalTests/PocoUserTests/PocoUserAuthorizationTests.cs

17 lines
629 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Identity.DefaultUI.WebSite;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Xunit.Abstractions;
namespace Microsoft.AspNetCore.Identity.FunctionalTests.IdentityUserTests
{
public class PocoUserAuthorizationTests : AuthorizationTests<PocoUserStartup, IdentityDbContext>
{
public PocoUserAuthorizationTests(ServerFactory<PocoUserStartup, IdentityDbContext> serverFactory) : base(serverFactory)
{
}
}
}