private void InitializeFakeObjects()
 {
     _getJwsInformationActionStub = new Mock <IGetJwsInformationAction>();
     _createJwsActionStub         = new Mock <ICreateJwsAction>();
     _jwsActions = new JwsActions(
         _getJwsInformationActionStub.Object,
         _createJwsActionStub.Object);
 }
示例#2
0
 public JwsController(IJwsActions jwsActions)
 {
     _jwsActions = jwsActions;
 }