public void CharactersWithSpacesTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; target.CharactersWithSpaces = expected; actual = target.CharactersWithSpaces; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void ApplicationTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; target.Application = expected; actual = target.Application; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void CreatedTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); // TODO: Initialize to an appropriate value DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value DateTime actual; target.Created = expected; actual = target.Created; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void TotalEditingTimeTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); // TODO: Initialize to an appropriate value float expected = 0F; // TODO: Initialize to an appropriate value float actual; target.TotalEditingTime = expected; actual = target.TotalEditingTime; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void SaveTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); // TODO: Initialize to an appropriate value target.Save(); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void OpenXmlSdkDocumentPropertiesConstructorTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void DocumentTest() { OpenXmlSdkTextDocument document = null; // TODO: Initialize to an appropriate value OpenXmlSdkDocumentProperties target = new OpenXmlSdkDocumentProperties(document); // TODO: Initialize to an appropriate value IPackageDocument actual; actual = target.Document; Assert.Inconclusive("Verify the correctness of this test method."); }