public void NameTest()
 {
     OpenXmlSdkTextPlugin target = new OpenXmlSdkTextPlugin(); // TODO: Initialize to an appropriate value
     string actual;
     actual = target.Name;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void CreateTextDocumentTest()
 {
     OpenXmlSdkTextPlugin target = new OpenXmlSdkTextPlugin(); // TODO: Initialize to an appropriate value
     string fileName = string.Empty; // TODO: Initialize to an appropriate value
     ITextDocument expected = null; // TODO: Initialize to an appropriate value
     ITextDocument actual;
     actual = target.CreateTextDocument(fileName);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void OpenXmlSdkTextPluginConstructorTest()
 {
     OpenXmlSdkTextPlugin target = new OpenXmlSdkTextPlugin();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void ToStringTest()
 {
     OpenXmlSdkTextPlugin target = new OpenXmlSdkTextPlugin(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.ToString();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }