Ejemplo n.º 1
0
 public void InnerObjectTest()
 {
     OpenXmlSdkRange range = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkText target = new OpenXmlSdkText(range); // TODO: Initialize to an appropriate value
     Text actual;
     actual = target.InnerObject;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
 public void NodeTest()
 {
     OpenXmlSdkRange range = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkText target = new OpenXmlSdkText(range); // TODO: Initialize to an appropriate value
     INode expected = null; // TODO: Initialize to an appropriate value
     INode actual;
     target.Node = expected;
     actual = target.Node;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 3
0
 public void SemanticMarkupTest()
 {
     OpenXmlSdkRange range = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkText target = new OpenXmlSdkText(range); // 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.");
 }
Ejemplo n.º 4
0
 public void OpenXmlSdkTextConstructorTest()
 {
     OpenXmlSdkRange range = null; // TODO: Initialize to an appropriate value
     OpenXmlSdkText target = new OpenXmlSdkText(range);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }