public void IsSameParaKindAsPrevious(int[] currentLineTabs, int[] prevLineTabs,
			int[] currentParTabs, bool expectedResult)
        {
            var rtfConverter = new RtfConverterDouble(currentLineTabs, prevLineTabs, currentParTabs);

            Assert.That(rtfConverter.CallIsSameParaKindAsPrevious, Is.EqualTo(expectedResult));
        }
        public void IsContinuationLine(int[] currentLineTabs, int[] prevLineTabs,
			int[] currentParTabs, bool expectedResult)
        {
            var rtfConverter = new RtfConverterDouble(currentLineTabs, prevLineTabs, currentParTabs);

            Assert.That(rtfConverter.CallIsContinuationLine, Is.EqualTo(expectedResult));
        }