Skip to content

Commit

Permalink
Removes ApiAuthorizationDbContext from coverage
Browse files Browse the repository at this point in the history
Handled by dotnet team
  • Loading branch information
akritikos committed Feb 11, 2021
1 parent bb4fd5c commit 5b2b0cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
namespace Kritikos.Configuration.Peristence.IdentityServer
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
using System.Threading.Tasks;

Expand All @@ -26,6 +27,7 @@ namespace Kritikos.Configuration.Peristence.IdentityServer
/// <seealso cref="DbContext"/>
/// <seealso cref="IPersistedGrantDbContext"/>
/// <seealso cref="IConfigurationDbContext"/>
[ExcludeFromCodeCoverage]
public abstract class ApiAuthorizationDbContext<TUser, TRole, TKey> :
IdentityDbContext<TUser, TRole, TKey>,
IPersistedGrantDbContext,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
namespace Kritikos.Configuration.Peristence.IdentityServer
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
using System.Threading.Tasks;

Expand Down Expand Up @@ -29,6 +30,7 @@ namespace Kritikos.Configuration.Peristence.IdentityServer
/// <seealso cref="IConfigurationDbContext"/>
/// <exception cref="InvalidOperationException">Could not resolve an instance of <seealso cref="ConfigurationStoreOptions"/>.</exception>
/// <exception cref="InvalidOperationException">Could not resolve an instance of <seealso cref="OperationalStoreOptions"/>.</exception>
[ExcludeFromCodeCoverage]
public abstract class ApiAuthorizationPooledDbContext<TUser, TRole, TKey> :
IdentityDbContext<TUser, TRole, TKey>,
IPersistedGrantDbContext,
Expand Down

0 comments on commit 5b2b0cc

Please sign in to comment.