public AuthorizeInteractionResponseGeneratorTests()
 {
     _subject = new Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator(
         _clock,
         TestLogger.Create <Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator>(),
         _mockConsentService,
         new MockProfileService());
 }
Ejemplo n.º 2
0
 public AuthorizeInteractionResponseGeneratorTests_Consent()
 {
     _subject = new Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator(
         new StubClock(),
         TestLogger.Create <Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator>(),
         _mockConsent,
         _fakeUserService);
 }