Bloom_ChorusTests.cs.HtmlHandlerTests.BothDoSameEdit C# (CSharp) Method

BothDoSameEdit() private method

private BothDoSameEdit ( ) : void
return void
        public void BothDoSameEdit()
        {
            const string common = @"<html><head></head><body><div class='bloom-page' id='1'>one</div></body></html>";
            const string theirs = @"<html><head></head><body><div class='bloom-page' id='1'>two</div></body></html>";
            const string ours = @"<html><head></head><body><div class='bloom-page' id='1'>two</div></body></html>";

            var result = DoMerge(common, ours, theirs);
            result.listener.AssertExpectedConflictCount(0);
            result.listener.AssertExpectedChangesCount(1);
        }