public IntrospectionRequestValidatorTests()
        {
            _referenceTokenStore = Factory.CreateReferenceTokenStore();
            var tokenValidator = Factory.CreateTokenValidator(_referenceTokenStore);

            _subject = new IntrospectionRequestValidator(tokenValidator, TestLogger.Create <IntrospectionRequestValidator>());
        }
 public IntrospectionEndpointController(
     IntrospectionRequestValidator requestValidator,
     IdentityServerOptions options,
     IEventService events,
     ScopeSecretValidator scopeSecretValidator)
 {
     _requestValidator     = requestValidator;
     _scopeSecretValidator = scopeSecretValidator;
     _options = options;
     _events  = events;
 }