示例#1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void startDelegatesToCatchUpClient()
        public virtual void StartDelegatesToCatchUpClient()
        {
            // when
            Subject.start();

            // then
            verify(_catchUpClient).start();
        }
示例#2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public void start() throws Throwable
        public override void Start()
        {
            base.Start();
            _backupDelegator.start();
        }