public void CallMergeFunctions()
        {
            EntryPage target = new EntryPage();
            EntryPage source = new EntryPage();

            _entryHelper.Expect(z => z.UpdateWith(target.Entry, source.Entry))
            .Return(true);
            _repliesHelper.Expect(z => z.MergeFrom(target, source))
            .Return(true);

            _eph.AddData(target, source);

            _entryHelper.VerifyAllExpectations();
            _repliesHelper.VerifyAllExpectations();
        }