public AuthorizeInteractionResponseGeneratorTests_Consent()
 {
     _subject = new Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator(
         _options,
         new StubClock(),
         TestLogger.Create <Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator>(),
         _mockConsent,
         _fakeUserService);
 }
コード例 #2
0
 public AuthorizeInteractionResponseGeneratorTests()
 {
     _subject = new Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator(
         _options,
         _clock,
         TestLogger.Create <Duende.IdentityServer.ResponseHandling.AuthorizeInteractionResponseGenerator>(),
         _mockConsentService,
         new MockProfileService());
 }