public void RangesTest()
 {
     OpenXmlSdkTextDocument textDocument = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkParagraph target = new OpenXmlSdkParagraph(textDocument); // TODO: Initialize to an appropriate value
     RangeCollection actual;
     actual = target.Ranges;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemplo n.º 2
0
        internal OpenXmlSdkRange(OpenXmlSdkParagraph paragraph, OpenXmlSdk.Run run)
            : base(paragraph.TextDocument, run)
        {
            if (paragraph == null)
            {
                throw new ArgumentNullException("paragraph");
            }

            _paragraph = paragraph;
            _textCollection = new OpenXmlSdkTextCollection(this);
        }
 public void SemanticMarkupTest()
 {
     OpenXmlSdkTextDocument textDocument = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkParagraph target = new OpenXmlSdkParagraph(textDocument); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.SemanticMarkup = expected;
     actual = target.SemanticMarkup;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void OpenXmlSdkParagraphConstructorTest()
 {
     OpenXmlSdkTextDocument textDocument = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkParagraph target = new OpenXmlSdkParagraph(textDocument);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }