Пример #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Before public void setup()
        public virtual void Setup()
        {
            _remoteStore     = mock(typeof(RemoteStore));
            _catchUpClient   = mock(typeof(CatchUpClient));
            _storeCopyClient = mock(typeof(StoreCopyClient));
            Subject          = new BackupDelegator(_remoteStore, _catchUpClient, _storeCopyClient);
        }
Пример #2
0
 internal BackupDelegator(RemoteStore remoteStore, CatchUpClient catchUpClient, StoreCopyClient storeCopyClient)
 {
     this._remoteStore     = remoteStore;
     this._catchUpClient   = catchUpClient;
     this._storeCopyClient = storeCopyClient;
 }