public PostIntrospectionActionFixture()
 {
     _tokenStoreStub          = new Mock <ITokenStore>();
     _postIntrospectionAction = new PostIntrospectionAction(_tokenStoreStub.Object);
 }
Exemple #2
0
 public IntrospectionActionsFixture()
 {
     _introspectionActions = new PostIntrospectionAction(
         new InMemoryTokenStore());
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="IntrospectionController"/> class.
 /// </summary>
 /// <param name="tokenStore">The token store.</param>
 public IntrospectionController(ITokenStore tokenStore)
 {
     _introspectionActions = new PostIntrospectionAction(tokenStore);
 }