public JweActions(
     IGetJweInformationAction getJweInformationAction,
     ICreateJweAction createJweAction)
 {
     _getJweInformationAction = getJweInformationAction;
     _createJweAction         = createJweAction;
 }
 private void InitializeFakeObjects()
 {
     _jweParserStub           = new Mock <IJweParser>();
     _jwsParserStub           = new Mock <IJwsParser>();
     _jsonWebKeyHelperStub    = new Mock <IJsonWebKeyHelper>();
     _getJweInformationAction = new GetJweInformationAction(
         _jweParserStub.Object,
         _jwsParserStub.Object,
         _jsonWebKeyHelperStub.Object);
 }